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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # This test should fail as MyISAM doesn't have rollback
  3. #
  4. drop table if exists t1;
  5. create table t1 (n int not null primary key) type=myisam;
  6. begin work;
  7. insert into t1 values (4);
  8. insert into t1 values (5);
  9. # Should give an error
  10. !$1196 rollback;
  11. select * from t1;
  12. drop table t1;