I'm using the Codeigniter framework and every time I create a select with query builder of them, it puts double quotes in all columns and tables.
Ex: SELECT "ID", "NAME" FROM "STUDENT"
This gives me a problem because I use 2 connections to the database, oracle, and pgsql. In oracle works normally, as long as pgsql returns me error.
I know that if I put the last parameter in my functions as false, it works, but I wanted to know if it has a global parameter to do this, or am I going to have to pass method by method false?