Re: [PHP] Query Batch

2003-11-18 Thread John W. Holmes
b b wrote: I am translating an MS-SQL application into mysql/php. I need to be able to send a batch of queries all at once. For example: $qStr = " Insert into A(name, address) values('$name', '$address') ; Insert into B(personID, department ...)values (@@identity, '$department');" ; $result= my

[PHP] Query Batch

2003-11-18 Thread b b
Jhon you mentioned that one may send a batch of queries with mysql_list? maybe I understood you wrong. I am translating an MS-SQL application into mysql/php. I need to be able to send a batch of queries all at once. For example: $qStr = " Insert into A(name, address) values('$name', '$address