rs.updateInt(1, currentPosition + 1000);
rs.first();
assertEquals("CurrentPosition should be 1", rs.getRow(), 1);
assertTrue("isFirst() should return true", rs.isFirst());
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move to last row from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);