The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp

在连接Mysql数据库的时候报了如下错误,那么如何解决呢?

The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp_第1张图片

步骤一:找到MySQL配置文件my.ini或my.cnf

  • 一般来说,以上文件的路径为:C:\ProgramData\MySQL\MySQL Server 5.7
  • 如果找不到可以通过如下方式:
    1、右键计算机/此电脑→管理→服务和应用程序→服务,找到MySQL服务
    2、右键MySQL服务→点击属性
    The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp_第2张图片
    The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp_第3张图片
    就可以看到这个my.ini配置文件的路径啦

步骤二:修改my.ini文件

  • 使用记事本或者vscode等打开my.ini文件
  • 找到[mysqld]模块
  • 加入show_compatibility_56 = 1这句话
    The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp_第4张图片
  • 保存关闭

步骤三:重启Mysql服务

  • 找到Mysql服务,然后右键重新启动,配置生效。
    The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp_第5张图片
    再打开Mysql可视化工具打开数据库时就不会再弹出刚刚的错误啦!
    The ‘INFORMATION_SCHEMA.SESSION_VARIABLES’ feature is disabled; see the documentation for ‘show_comp_第6张图片

你可能感兴趣的:(一些奇奇怪怪的小问题)