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

link|improve this question

54% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.