tablelock.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2;
  2. create table t1 ( n int auto_increment primary key);
  3. lock tables t1 write;
  4. insert into t1 values(NULL);
  5. unlock tables;
  6. check table t1;
  7. Table Op Msg_type Msg_text
  8. test.t1 check status OK
  9. lock tables t1 write, t1 as t0 read;
  10. insert into t1 values(NULL);
  11. unlock tables;
  12. check table t1;
  13. Table Op Msg_type Msg_text
  14. test.t1 check status OK
  15. lock tables t1 write, t1 as t0 read, t1 as t2 read;
  16. insert into t1 values(NULL);
  17. unlock tables;
  18. check table t1;
  19. Table Op Msg_type Msg_text
  20. test.t1 check status OK
  21. lock tables t1 write, t1 as t0 write, t1 as t2 read;
  22. insert into t1 values(NULL);
  23. unlock tables;
  24. check table t1;
  25. Table Op Msg_type Msg_text
  26. test.t1 check status OK
  27. lock tables t1 write, t1 as t0 write, t1 as t2 read, t1 as t3 read;
  28. insert into t1 values(NULL);
  29. unlock tables;
  30. check table t1;
  31. Table Op Msg_type Msg_text
  32. test.t1 check status OK
  33. lock tables t1 write, t1 as t0 write, t1 as t2 write;
  34. insert into t1 values(NULL);
  35. unlock tables;
  36. check table t1;
  37. Table Op Msg_type Msg_text
  38. test.t1 check status OK
  39. drop table t1;
  40. CREATE TABLE t1 (a int);
  41. CREATE TABLE t2 (a int);
  42. lock tables t1 write,t1 as b write, t2 write, t2 as c read;
  43. drop table t1,t2;
  44. CREATE TABLE t1 (a int);
  45. CREATE TABLE t2 (a int);
  46. lock tables t1 write,t1 as b write, t2 write, t2 as c read;
  47. drop table t2,t1;
  48. unlock tables;