From 2d2b2b9d6b158007c3a67e91486cc392f3a9fe6f Mon Sep 17 00:00:00 2001
From: Rick Ellis
of any given query.
By default CodeIgniter runs all transactions in Strict Mode. When strict mode is enabled, if you are running multiple groups of +transactions, if one group fails all groups will be rolled back. If strict mode is disabled, each group is treated independently, meaning +a failure of one group will not affect any others.
+ +Strict Mode can be disabled as follows:
+ +$this->db->trans_strict(FALSE);
+
+
If you have error reporting enabled in your config/database.php file you'll see a standard error message if the commit was unsuccessful. If debugging is turned off, you can
@@ -171,10 +182,6 @@ else
-
-
-
-
--
cgit v1.2.3-24-g4f1b