This is a discussion on Multiple Queries. within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Is it possible to perform multiple queries in one command/execution?...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
On Tue, 31 Jan 2006 22:20:02 -0800, TheSeer wrote:
> Is it possible to perform multiple queries in one command/execution? It depends! If you're on mysql > 5.x then yes it is. in newer version of mysql you can write a stored procedure and have as many queries as you'd like in that procedure. you then return the result set in an array like you'd normally do. other databases such as m$sql or oracle provide this as well but mysql version < 5.x do not. |