📜  java resultset.absolute - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:32.193000             🧑  作者: Mango

代码示例1
# resultSet.absolute(int) is a navigation method to set the cursor on the int row.
@Override
public boolean absolute(int row) throws SQLException {
  return rs.absolute(row);
}