MySQL提示: Prepared statement needs to be re-prepared
可能原因
mysql中数据表的使用量超出了两个全局变量(打开表的缓存数量,表定义缓存数量)的设置值。
解决方案
1、查看以下配置
SHOW variables LIKE '%table_open_cache%';
SHOW variables LIKE '%table_definition_cache%';
2、执行以下SQL
SET GLOBAL table_open_cache=16384;
SET GLOBAL table_definition_cache=16384;
3、修改my.cnf 或者 my.ini配置文件
table_open_cache=16384
table_definition_cache=16384