createJdbcRowSet源代码

发布于 2024-10-31 07:18:09 字数 422 浏览 6 评论 0原文

我正在研究如何使用新 API 创建 JdbcRowSet 的实现 随 JDBC 4.1 提供,

RowSetFactory rf = RowSetProvider.newFactory();
JdbcRowSet jdbcrs = rf.createJdbcRowSet();

我想知道幕后的方法 createJdbcRowSet 是否调用了

new JdbcRowSetImpl()

使用 JdbcRowSet 的参考实现的旧方法。

如果我打开 src.zip,我只有接口 RowSetFactory 的定义,其中 方法已声明,那么如何查看当前定义?

谢谢

I'm studying how to create an implementation of a JdbcRowSet with the new API
provided with JDBC 4.1

RowSetFactory rf = RowSetProvider.newFactory();
JdbcRowSet jdbcrs = rf.createJdbcRowSet();

I want to know if the method createJdbcRowSet behind the scene do a call to

new JdbcRowSetImpl()

that was the old way to use a reference implementation of a JdbcRowSet.

If I open src.zip I have only the definition of the interface RowSetFactory in which that
method is declared so how can I view the current definition?

Thanks

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

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

发布评论

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

评论(1

只想待在家 2024-11-07 07:18:09

您可以从 OpenJDK 项目中获取所有源代码。例如,这里是 Java 7 中使用的 RowSetFactory 的实现:

http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/7-b147/com /sun/rowset/RowSetFactoryImpl.java#RowSetFactoryImpl

You can get all the source code from the OpenJDK project. For example here is the implementation of RowSetFactory used in Java 7:

http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/7-b147/com/sun/rowset/RowSetFactoryImpl.java#RowSetFactoryImpl

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