Sorry, me once again.
In a model, I am trying to run bad sql commands to study the MySQLi behavior.
As the documentation says, if 'DBDebug' is false, then the execution should not be stopped
in case of MySQL errors, right?
In my case, I have the line
PHP Code:
'DBDebug' => (ENVIRONMENT !== 'production')
and the print of the 'ENVIRONMENT' variable is 'production'.
With this setup, the execution is stopped after a dummy query to insert something
in a table that doesn't exists into the database.
When a run a correct query, everything works as expected.
Should I forgot something? As the dot in front of the 'env'... x)
Thank you!
glihm