Can I change the database config per method in a controller?
$db[\'default\'][\'db_debug\'] = TRUE;
The default is TRUE, while
TRUE
I checked the code of system/database/DB_Driver and found that:
$this->db->db_debug = FALSE;
will work in my controller to enable/disable the debug thing on the fly.