createJdbcRowSet源代码
我正在研究如何使用新 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 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