ResultSet.TYPE_SCROLL_SENSITIVE表示返回的ResultSet游标可以前后回滚到一个绝对位置或相对于当前行的某位置
  ResultSet.CONCUR_UPDATABLE表示返回的ResultSet是可修改的
例:
       rs.absolute(5); // moves the cursor to the fifth row of rs
       rs.updateString("NAME", "AINSWORTH"); // updates the 
          // NAME column of row 5 to be AINSWORTH
       rs.updateRow(); // updates the row in the data source