RE: transactions with php

2003-06-18 Thread Steven Roussey
In http://www.mysql.com/doc/en/News-4.0.6.html * mysql_change_user() will now reset the connection to the state of a fresh connect (Ie, ROLLBACK any active transaction, close all temporary tables, reset all user variables etc..) So it is in there, starting with version MySQL 4.0.6. -steve- -

Re: transactions with php

2003-06-18 Thread Steven Roussey
> If you're using a non-persistent connection, PHP will close the > connection when the script terminates, and the MySQL server will roll back > implicitly. For a non-persistent connection, the connection remains open > and you may not see the rollback behavior your expect. I thought this was fi

Re: transactions with php

2003-06-17 Thread Don Read
On 18-Jun-2003 Becoming Digital wrote: ... >> if(!mysql_query($array[$i])) { >> $flag = false; >>break; >> } >> >> after the loop I do >> if($flag) >> mysql_query("commit"); >> else >> mysql_query("rollback"); > > Be careful with that last if() statement. I would either change the >

Re: transactions with php

2003-06-17 Thread Becoming Digital
rom: "Jonas Geiregat" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, 17 June, 2003 15:19 Subject: Re: transactions with php Becoming Digital wrote: > I found one item in the PHP Classes Repository that may be of use. > Unfortunately, the comments are in Span

Re: transactions with php

2003-06-17 Thread Jonas Geiregat
Becoming Digital wrote: I found one item in the PHP Classes Repository that may be of use. Unfortunately, the comments are in Spanish, so it's up to you to figure out the code. http://promoxy.mirrors.phpclasses.org/browse.html/file/3077.html Edward Dudlik Becoming Digital www.becomingdigital.com

Re: transactions with php

2003-06-17 Thread Jonas Geiregat
Becoming Digital wrote: I found one item in the PHP Classes Repository that may be of use. Unfortunately, the comments are in Spanish, so it's up to you to figure out the code. http://promoxy.mirrors.phpclasses.org/browse.html/file/3077.html Edward Dudlik Becoming Digital www.becomingdigital.com -

Re: transactions with php

2003-06-17 Thread Becoming Digital
I found one item in the PHP Classes Repository that may be of use. Unfortunately, the comments are in Spanish, so it's up to you to figure out the code. http://promoxy.mirrors.phpclasses.org/browse.html/file/3077.html Edward Dudlik Becoming Digital www.becomingdigital.com - Original Message

Re: transactions with php

2003-06-17 Thread Paul DuBois
At 10:44 -0700 6/17/03, Jonas Geiregat wrote: I'm trying to implement transaction (mysql) in my php code. Could anyone tell me if this is a good way of using them. I make an array with all the query's I loop through them. like this mysql_query($qarray[$i])or die($flag = false);. After the loop I