Welcome Guest, Not a member yet? Register   Sign In
Code Igniter database transactions
#18

[eluser]gtech[/eluser]
Just comment out the call to display error.. don't rollback in the query function as you will rollback before your transaction is completed... eg you have two queries in a transaction- the 1st one fails and your 'fix' will rollback before the second query is called.

what the code does is set _trans_Status TRUE when you first load your page and then it is set to FALSE if an error happens on a query.. If the flag is FALSE when the trans_complete function is called it will rollback, if it TRUE it will be commited

so just comment out
Code:
//return $this->display_error(array("Error Number: $errno",$errmsg,$sql));
and I reckon that will fix transactions if db_debug is set to TRUE.. however I just recommend setting the flag to FALSE in the config file.. it just saves messing around, I just don't think its designed to run with debug on.


Messages In This Thread
Code Igniter database transactions - by El Forum - 04-19-2008, 03:58 PM
Code Igniter database transactions - by El Forum - 04-19-2008, 07:48 PM
Code Igniter database transactions - by El Forum - 04-19-2008, 11:02 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 03:15 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 03:46 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 04:07 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 04:42 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 06:07 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 06:17 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 07:20 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 07:36 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 08:27 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 08:45 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 09:00 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 10:07 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 10:12 PM
Code Igniter database transactions - by El Forum - 04-20-2008, 10:30 PM
Code Igniter database transactions - by El Forum - 04-21-2008, 12:36 PM
Code Igniter database transactions - by El Forum - 04-21-2008, 03:56 PM
Code Igniter database transactions - by El Forum - 04-21-2008, 03:59 PM



Theme © iAndrew 2016 - Forum software by © MyBB