将字节数组写入 oracle 中的原始列
我想将字节数组写入 oracle 中的原始列。
byte[] bArray = new byte[16];
stmt = fConnection.prepareStatement(query);
我想做类似的事情:
stmt.setBinaryStream(1, bArray );
但是,我想不出一种优雅的方式来做到这一点。有人可以指点一下吗?
I want to write a byte array to a raw column in oracle.
byte[] bArray = new byte[16];
stmt = fConnection.prepareStatement(query);
I want to do something like:
stmt.setBinaryStream(1, bArray );
However, I couldn't figure out an elegant way of doing it. Can some one please throw in some pointers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有
setBytes()
方法用于。单击上面的
setBytes()
链接,了解PreparedStatement
类的所有方法的概述。它称为javadoc。开始熟悉 javadoc。它们是无价的。There the
setBytes()
method is for.Click the above
setBytes()
link for an overview of all methods of thePreparedStatement
class. It's called javadoc. Start familarizing you with the javadocs. They are invaluable.