将字节数组写入 oracle 中的原始列

发布于 2024-10-10 10:04:39 字数 244 浏览 7 评论 0原文

我想将字节数组写入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的背包 2024-10-17 10:04:39

setBytes() 方法用于。

stmt.setBytes(1, bArray);

单击上面的 setBytes() 链接,了解 PreparedStatement 类的所有方法的概述。它称为javadoc。开始熟悉 javadoc。它们是无价的。

There the setBytes() method is for.

stmt.setBytes(1, bArray);

Click the above setBytes() link for an overview of all methods of the PreparedStatement class. It's called javadoc. Start familarizing you with the javadocs. They are invaluable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文