Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我随机收到此错误
java.sql.SQLException: Io exception: Bad packet type
我做了一些研究,有人提出了一个解决方案:
为了纠正这个问题,我们必须确保一次只有一个执行线程通过相同的连接使用 JDBC 驱动程序,或者升级到更高版本的驱动程序。
谁能指导我如何确保一次只有一个执行线程使用 JDBC 驱动程序?
我们通过关闭preparedStatement 的连接而不是数据库连接本身解决了这个问题。
利用:
ps.getConnection().close();
代替 :
conn.close();