Re: [PHP] unstable execution of mysql_db_query($db, $myQuery)

2001-02-15 Thread Martin A. Marques
El Jue 15 Feb 2001 13:32, escribiste: > I am using MySQL 3.22.32 and PHP 4.01PL2, but it seems that > mysql_db_query($db, $myQuery) is not quite stable, actually, in my code, it > is like > > mysql_db_query($db, $myQuery) or die "Something wrong during query"); > > 1 out of 15 (the same query), it

Re: [PHP] unstable execution of mysql_db_query($db, $myQuery)

2001-02-15 Thread Joe Sheble (Wizaerd)
try using mysql_query( $qQuery, $dbConnection ); At 10:32 AM 2/15/01 -0600, Zhu George-CZZ010 wrote: >I am using MySQL 3.22.32 and PHP 4.01PL2, but it seems that >mysql_db_query($db, $myQuery) is not quite stable, actually, in my code, >it is like > >mysql_db_query($db, $myQuery) or die "Someth

[PHP] unstable execution of mysql_db_query($db, $myQuery)

2001-02-15 Thread Zhu George-CZZ010
I am using MySQL 3.22.32 and PHP 4.01PL2, but it seems that mysql_db_query($db, $myQuery) is not quite stable, actually, in my code, it is like mysql_db_query($db, $myQuery) or die "Something wrong during query"); 1 out of 15 (the same query), it will "die". Does anyone have any suggestion? T