public boolean next(): | It is used to move the cursor to the one row next from the current position. |
public boolean previous(): | It is used to move the cursor to the one row previous from the current position. |
public boolean first(): | It is used to move the cursor to the first row in result set object. |
public boolean last(): | It is used to move the cursor to the last row in result set object. |
public boolean absolute(int row): | It is used to move the cursor to the specified row number in the ResultSet object. |
public boolean relative(int row): | It is used to move the cursor to the relative row number in the ResultSet object, it may be positive or negative. |
public int getInt(int columnIndex): | It is used to return data of the specified column index of the current row as int. |
public int getInt(String columnName): | It is used to return the data of specified column name of the current row as int. |
public String getString(int columnIndex): | It is used to return the data of specified column index of the current row as String. |
public String getString(String columnName): | It is used to return the data of specified column name of the current row as String. |