关于Operation not allowed after ResultSet closed错误的一种解决方式

时间:2021-09-04 20:34:05
          这个问题主要是连接时,需要使用从客户端传来的数据,例如我传进一个name属性值  :张三,当我把它凑成sql语句的时候就会出问题(即使你的java是UTF-8格式,数据库也是UTF-8格式,但是连接不对,依然会出错)           所以在连接时,把url改成(我使用的是mysql):url=jdbc\:mysql\://localhost\:3306/studentsautoReconnect\=true&useUnicode\=true&characterEncoding\=utf8
如果出现,Operation not allowed after ResultSet closed这个错误,而且在你其他操作(sql语句什么的)都没错的时候可以试试这个。


其他的出现这个错误,可能是公用一个statement,或是之前就执行了close操作