我想写一个字节数组到Oracle中的原始列。
byte[] bArray = new byte[16]; stmt = fConnection.prepareStatement(query);
字符串我想做的是:
stmt.setBinaryStream(1, bArray );
型但是,我想不出一个优雅的方法来做这件事。有人能指点一下吗?
g6baxovj1#
setBytes()方法就是这样的。
setBytes()
stmt.setBytes(1, bArray);
字符串点击上面的setBytes()链接,可以看到PreparedStatement类的所有方法。它被称为 javadoc。开始熟悉javadoc吧。它们是无价的。
PreparedStatement
1条答案
按热度按时间g6baxovj1#
setBytes()
方法就是这样的。字符串
点击上面的
setBytes()
链接,可以看到PreparedStatement
类的所有方法。它被称为 javadoc。开始熟悉javadoc吧。它们是无价的。