Changes in directory nightlytest-serverside:

SQLQuery.php updated: 1.8 -> 1.9
---
Log message:

Allow multiple queries

---
Diffs of the changes:  (+1 -1)

 SQLQuery.php |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: nightlytest-serverside/SQLQuery.php
diff -u nightlytest-serverside/SQLQuery.php:1.8 
nightlytest-serverside/SQLQuery.php:1.9
--- nightlytest-serverside/SQLQuery.php:1.8     Tue Sep 19 12:52:13 2006
+++ nightlytest-serverside/SQLQuery.php Wed Sep 20 13:47:52 2006
@@ -41,7 +41,7 @@
 if ($was_query) {
   $queries = split("\n", $queries);
 
-  $mysql_link = mysql_connect("127.0.0.1", $user, $password) or die("Error: 
could not connect to database!\n");
+  $mysql_link = mysql_connect("127.0.0.1", $user, $password, false, 
CLIENT_MULTI_STATEMENTS) or die("Error: could not connect to database!\n");
   mysql_select_db("nightlytestresults");
   
   foreach ($queries as $query) {



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to