mysql LOCK TABLES real_table WRITE, insert_table WRITE; mysql insert into real_table select * from insert_table; mysql delete from insert_table; mysql UNLOCK TABLES;[ 查看全文 ]
This file is /tmp/phpBeoJQ5 . ################# You can copy this code to test ################# <? include("include/dbclass.inc"); //可以用 MYSQL.INC 类代替测试 $q = new DB_Sql; $db = $q-Database; //define the database mysql_connect('localhost:3306',$q-User,$q-Password); ...[ 查看全文 ]
怎么使 Mysql 数据同步先假设有主机 A 和 B ( Linux 系统),主机 A 的 IP 分别是 1.2.3.4 (当然,也可以是动态的),主机 B 的 IP 是 5.6.7.8 。两个主机都装上了 PHP+Mysql ,现在操作的是主机 A 上的资料,如果另外一个主机 B 想跟 A 的资料进行同步,应该怎么做呢? OK,我们现在就动手。 首先,如果要想两个主机间的资料同步,一种方法就是主机 A 往主机 B 送资料,另外一种...[ 查看全文 ]