1
I am using the Codeigniter framework and every time I create a select with their Builder query, it puts double quotes on all columns and tables.
Ex: SELECT "ID", "NAME" FROM "STUDENT"
This ends up giving me problem, because I use 2 connections with database, oracle and pgsql. oracle works normally, already in pgsql returns me error.
I know that if I put the last parameter in my functions as false, it works, but I wonder if there is some global parameter to do this, or I’ll have to pass method by method the false ?
which version of the IC you are using?
– mercador