其他分享
首页 > 其他分享> > Prepared statement needs to be re-prepared问题

Prepared statement needs to be re-prepared问题

作者:互联网

执行存储过程时Java代码报错:java.sql.SQLException: Prepared statement needs to be re-prepared;单独调用存储过程也是报错:Prepared statement needs to be re-prepared,代码和存储过程没问题;这是数据库设置问题

查看这以下配置:

SHOW VARIABLES LIKE '%table_open_cache%';
SHOW VARIABLES LIKE '%table_definition_cache%';

执行语句,去服务器上登录mysql:
SET GLOBAL table_open_cache=16384;
SET GLOBAL table_definition_cache=16384;

在修改下my.cnf文件配置:

 

 

————————————————
版权声明:本文为CSDN博主「王子様~」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_31424825/article/details/87884152

标签:needs,Prepared,re,statement,table,prepared
来源: https://www.cnblogs.com/yyhhblog/p/15539948.html