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

MySQL数据库

开发平台:

Visual C++

  1. select hex(@a);
  2. hex(@a)
  3. NULL
  4. select hex(@a);
  5. hex(@a)
  6. 610063
  7. set global init_connect="set @a=2;set @b=3";
  8. select @a, @b;
  9. @a @b
  10. 2 3
  11. set GLOBAL init_connect=DEFAULT;
  12. select @a;
  13. @a
  14. NULL
  15. set global init_connect="create table t1(a char(10));
  16. insert into t1 values ('');insert into t1 values('abc')";
  17. select hex(a) from t1;
  18. hex(a)
  19. 00
  20. 616263
  21. set GLOBAL init_connect="adsfsdfsdfs";
  22. select @a;
  23. Got one of the listed errors
  24. drop table t1;