I have an old application which I need to optimize in which my method returns java.sql.ResultSet and also I have single connection so now I need to implement connection pooling now the problem is if I close the connection than resultset will give exception when doing rs.next() so I want such a class similar to ResultSet which we can say is detached from Connection also such that i don’t have to make changes on my JSPs where i have used ResultSet object.
I have an old application which I need to optimize in which my method
Share
Got the solution I had used
CachedRowSet