rpl000005.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. connection master;
  3. drop table if exists t1;
  4. CREATE TABLE t1 (name varchar(64), age smallint(3));
  5. INSERT INTO  t1 SET name='Andy', age=31;
  6. INSERT t1 SET name='Jacob', age=2;
  7. INSERT into t1 SET name='Caleb', age=1;
  8. ALTER TABLE t1 ADD id int(8) ZEROFILL AUTO_INCREMENT PRIMARY KEY;
  9. @r/rpl000005.result select * from t1;
  10. save_master_pos;
  11. connection slave;
  12. sync_with_master;
  13. @r/rpl000005.result select * from t1;
  14. connection master;
  15. drop table t1;
  16. save_master_pos;
  17. connection slave;
  18. sync_with_master;