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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of init_connect variable
  3. #
  4. connect (con0,localhost,root,,);
  5. connection con0;
  6. select hex(@a);
  7. connect (con1,localhost,user_1,,);
  8. connection con1;
  9. select hex(@a);
  10. connection con0;
  11. set global init_connect="set @a=2;set @b=3";
  12. connect (con2,localhost,user_1,,);
  13. connection con2;
  14. select @a, @b;
  15. connection con0;
  16. set GLOBAL init_connect=DEFAULT;
  17. connect (con3,localhost,user_1,,);
  18. connection con3;
  19. select @a;
  20. connection con0;
  21. set global init_connect="create table t1(a char(10));
  22. insert into t1 values ('');insert into t1 values('abc')";
  23. connect (con4,localhost,user_1,,);
  24. connection con4;
  25. select hex(a) from t1;
  26. connection con0;
  27. set GLOBAL init_connect="adsfsdfsdfs";
  28. connect (con5,localhost,user_1,,);
  29. connection con5;
  30. --error 2013,2006
  31. select @a;
  32. connection con0;
  33. drop table t1;
  34. # End of 4.1 tests