I used MySQL on my projects previously, but for a new one I want to try PostgreSQL.
Turns out, there is a big problem, because case-insensitive search is not available for Postgres in Wappler.
I get that the reason behind it is to keep Query Builder DBMS-agnostic, that’s why it supports only SQL standard procedures.
As Patrik investigated and explained here, the issue is not simple, and the obvious solution has its drawbacks.
I see that users are struggling with different workarounds like using custom queries, making duplicate fields in DB, duplicating filters, etc. For me this is not worth it, so I might just stick with MySQL.
But Postgres is obviously more promising then MySQL and case-insensitive search is a crucial feature for most of the apps.
So I think it is worth finding and implementing a solution.