JDBC:结果集的默认可保存性

发布于 2024-09-16 12:57:15 字数 144 浏览 4 评论 0 原文

如果从未调用 Connection.setHoldability() 或在创建语句期间从未指定可保存性,则 ResultSet 的可保存性是否有定义的默认值?

我在 JDBC api 文档中找不到任何内容 - 那么它是特定于实现的吗?

谢谢。

is there a defined default for the holdability of ResultSet, if Connection.setHoldability() is never invoked or a holdability is never specified during the creation of a statement?

I could not find anything in the JDBC api docs - so is it implementation specific?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

长不大的小祸害 2024-09-23 12:57:15

“a的默认可持有性属性
ResultSet 对象是实现
定义的。默认可保持性
返回的 ResultSet 对象
底层数据源可以是
使用以下提供的 API 确定
JDBC 3.0。”

请参阅此链接供参考。

"The default holdability property of a
ResultSet object is implementation
defined. The default holdability of
ResultSet objects returned by the
underlying data source can be
determined using the APIs provided by
JDBC 3.0."

Please see this link for reference.

鱼窥荷 2024-09-23 12:57:15

默认可保持性是特定于实现的,但您可以通过调用 Connection 的 DatabaseMetaData 上的 getResultSetHoldability 方法来获取默认可保持性。

您还可以参阅 Oracle / Sun JDBC 文档中的第 6.1.9 节了解详细信息: http://download.oracle.com/javase/1.4.2/docs/guide/jdbc/getstart/resultset.html

The default holdability is implementation specific, but you can get the default holdability by calling the getResultSetHoldability method on the DatabaseMetaData for the Connection.

You can also see section 6.1.9 in the Oracle / Sun JDBC docs for details: http://download.oracle.com/javase/1.4.2/docs/guide/jdbc/getstart/resultset.html

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