InterviewSolution
Saved Bookmarks
| 1. |
How cursor works in scrollable result set? |
|
Answer» There are several methods in the ResultSet interface that involve moving the cursor, like beforeFirst(), afterLast(), first(), last(), absolute(int row), relative(int row), previous(), next(), getRow(), moveToInsertRow(), moveToCurrentRow(). |
|