CachedRowSet: can it still be used to hold ResultSet data?

痴心易碎 提交于 2019-12-23 08:28:18

问题


I would like to write a java function that takes in a SQL query and returns a ResultSet for processing elsewhere. This can't be done as a ResultSet is dead once the connection is closed.

Googling around I found a VERY OLD (2004) OReilly article that had something that looked like the cure: CachedRowSet. You just drop in your ResultSet, the CachedRowSet saves the data, lets you close the connection and play with the data elsewhere using the returned CachedRowSet.

The article references implementations of the CachedRowSet by Sun, which appear to be nowhere to be found.

Modern javadocs ( for Java 1.5 and up ) seem to have something by the same name, "CachedRowSet", that is more than just a holder of ResultSet data. That "CachedRowSet" seems to do the entire database processing from getting connections and everything else.

Is THAT "CachedRowSet" the same thing as is talked about in the old article?

I would like something simple, like in the old article. Something to plop a ResultSet into for processing after the conneciton is closed.

Is there such an animal?

Thanks


回答1:


CachedRowSet is a standard Java interface. Sun wrote a reference implementation, and the Sun/Oracle JDK contains it. If you're using a different JDK, that or another implementation may or may not be available.

If you already have a ResultSet, then you can fill a CachedRowSet from it using the populate method.

If you are forward-thinking enough to be using Java 7, then you can obtain a CachedRowSet instance in a portable way, using a RowSetFactory, which has a createCachedRowSet method. You can get a RowSetFactory from a RowSetProvider (of course!).




回答2:


javax.sql.rowset.CachedRowSet is merely an interface. There's a Sun/Oracle proprietary implementation, but it's unsupported and thus risky to use.

Most code these days follows the "convert to pojos" model.




回答3:


If you just want to transfer the data without the need of all the functions that CachedRowSet gives, you're better off just putting the result set data in an List of Lists.

   List<Object> list = new ArrayList<Object>();
   ResultSet rs = stmt.executeQuery("select * from myTable");
   while(rs.next()) {
         List<Object> row = new ArrayList<Object>();
         row.add(rs.getObject(1));
         row.add(rs.getObject(2));
         row.add(rs.getObject(3));
         //And so on, or you can use the ResultSetMetaData to determine the number of columns
         list.add(row);
   }
   rs.close();

When you are done you can send that list object anywhere you want and then iterate through it to get the data.



来源:https://stackoverflow.com/questions/10341785/cachedrowset-can-it-still-be-used-to-hold-resultset-data

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!