赞
踩
// 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
// 加载驱动 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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。