-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Database
World Wide Web Server edited this page Jul 4, 2012
·
9 revisions
TODO: please contribute to complete this wiki.
TODO: please contribute to complete this wiki.
The examples in the user guide enable database debugging. In this mode, database errors are handled by CodeIgniter and error are displayed. Generally this is not what you want in a production site. To disable debuggin change the following line in config/database.php file:
$db['default']['db_debug'] = TRUE;
to
$db['default']['db_debug'] = FALSE;
After setting this, you can use the return value of database operation methods. Example:
if ($this->USER->insert($id, $name, $password) === FALSE) { $data['result'] = 'failed'; } else { $data['result'] = 'successful'; }