如何自动为MySQL中的每个新连接调用查询?

前端之家收集整理的这篇文章主要介绍了如何自动为MySQL中的每个新连接调用查询?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

是否可以在MySQL中为每个新连接设置或初始化查询

无论何时创建连接,它都会自动调用过程或选择查询

这个的任何脚本或配置选项?

最佳答案
您可能想要检查init_connect变量:

A string to be executed by the server for each client that connects.
The string consists of one or more sql statements,separated by
semicolon characters. For example,each client session begins by
default with autocommit mode enabled.

http://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_init_connect

猜你在找的MySQL相关文章