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

MySQL数据库

开发平台:

Visual C++

  1. flush status;
  2. show status like 'Table_lock%';
  3. Variable_name Value
  4. Table_locks_immediate 0
  5. Table_locks_waited 0
  6. SET SQL_LOG_BIN=0;
  7. drop table if exists t1;
  8. create table t1(n int) engine=myisam;
  9. insert into t1 values(1);
  10. lock tables t1 read;
  11. unlock tables;
  12. lock tables t1 read;
  13. update t1 set n = 3;
  14. unlock tables;
  15. show status like 'Table_lock%';
  16. Variable_name Value
  17. Table_locks_immediate 3
  18. Table_locks_waited 1
  19. drop table t1;