- 问题描述
执行到 preparedStatement.setObject(1, “1111”);
出现报错 :[Microsoft][ODBC 驱动程序管理器] 无效的字符串或缓冲区长度
- 解决方法
// preparedStatement.setObject(1, "1111"); // 会报错 [Microsoft][ODBC 驱动程序管理器] 无效的字符串或缓冲区长度
// 改成 setBytes() 的方式
preparedStatement.setBytes(1, "111很好看".getBytes(StandardCharsets.UTF_16LE));
-
原因分析
具体什么原因也不清楚,大概就是:不使用Object等类型,改用 bytes 字节数组。因为Jdk 1.6/7在64位操作系统上JDBC-ODBC桥上的Bug,导致在调用ResultSet.getObject()/getString()的时候随机并且不定时的报出 [Microsoft][ODBC 驱动程序管理器] 无效的字符串或缓冲区长度 这个错误。并不是一定会报错,可能是正常的运行了一段时间之后才报出来。
出处:https://blog.51cto.com/u_15127605/4234309
4.简单完整的 demo文章来源:https://www.toymoban.com/news/detail-569333.html
// 加载驱动
Class.forName("org.objectweb.rmijdbc.Driver").newInstance();
// 连接 Connection
Connection connection = DriverManager.getConnection(url);
// 预编译 PreparedStatement
PreparedStatement preparedStatement = connection.prepareStatement("insert into triode (part_number,name) values (?,?)");
// 改成 setBytes() 的方式
preparedStatement.setBytes(1, "111很好看".getBytes(StandardCharsets.UTF_16LE));
// StandardCharsets.UTF_16LE 乱码的话,再试试其它的
preparedStatement.setBytes(2, "222靠路口".getBytes(StandardCharsets.UTF_16LE));
preparedStatement.addBatch();
preparedStatement.executeUpdate();
// 关闭操作
if (preparedStatement != null) {
preparedStatement.close();
}
if (connection != null) {
connection.close();
}
参考文章:关于PreparedStatement.addBatch()方法
https://blog.csdn.net/blueling51/article/details/6928755文章来源地址https://www.toymoban.com/news/detail-569333.html
到了这里,关于报错:[Microsoft][ODBC 驱动程序管理器] 无效的字符串或缓冲区长度的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!