> Since mysql_query doesn't support multiple queries per statement, what is the > best way to do this in PHP? Right now I'm using a transaction class to put > each query in an array and loop them, but efficiently handling any return > results is a bit of a puzzle.
MySQL _does_ support transactions. You just have to use the InnoDB storage engine (included, but not set as default in my Debian installs). You can see which storage engines are supported with " show engines" http://www.mysql.com/news-and-events/generate-article.php?id=2002_11 -Jordan _______________________________________________ UPHPU mailing list [email protected] http://uphpu.org/mailman/listinfo/uphpu IRC: #uphpu on irc.freenode.net
