04.08.2011, 16:05
Quote:
Is it possible to connect 2 databases ( in the GM)? database 1 = accounts, database 2 = bans.
mysql_connect("123.456.789", "DB1", "AA"); mysql_connect("123.456.789", "DB2", "BB"); With the php I believe it's possible. Thx. |
Код:
//this example demonstrates how to use more connections new SQLPtr[2]; //global var ... Function() { SQLPtr[0] = mysql_connect(...); SQLPtr[1] = mysql_connect(...); mysql_query("SELECT a FROM table WHERE foo = 'bar'",(-1),(-1),SQLPtr[0]); //select query in the first DB mysql_query("UPDATE b SET bar = 'foo'",(-1),(-1),SQLPtr[1]); //update query in the second DB mysql_close(SQLPtr[1]); //close the 2nd DB connection, the other connection still exists