I have the following problem using the Eclipse debugger.
I have to inspect a ResultSet rs object containing some rows obtained from a query.
I put my rs object into the Eclipse debugger expression area to analize it content but I can't understand how do the following things:
Where are stored the number of rows contained into my ResultSet object.
How can I see the rows inside the expression area of the debugger? (I want see the rows and its content)
You can't:
https://www.java67.com/2018/01/jdbc-how-to-get-row-and-column-count-from-resultset-java.html
Because Java Database Connectivity uses a streaming API, it doesn't return all of the results at once.