result set methods

Solutions on MaxInterview for result set methods by the best coders in the world

showing results for - "result set methods"
Alexa
31 Nov 2019
1next() -> moves to next row
2previous() -> moves to previous row
3getObject() -> reads data from column
4first() -> jumps to first row
5last() -> jumps to last row
6absolute(int row) -> go to specific row
7beforeFirst()-> jumps to row 0. 
8            Used to call next() method in while loop
9getRow() -> returns index of current row