本文整理匯總了Java中java.sql.ResultSet.afterLast方法的典型用法代碼示例。如果您正苦於以下問題:Java ResultSet.afterLast方法的具體用法?Java ResultSet.afterLast怎麽用?Java ResultSet.afterLast使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.sql.ResultSet
的用法示例。
在下文中一共展示了ResultSet.afterLast方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testSecretResultSet03
import java.sql.ResultSet; //導入方法依賴的package包/類
@Test
public void testSecretResultSet03() throws Exception {
cleanInsert(Paths.get("src/test/resources/data/setup", "testExecuteQuery.ltsv"));
try (SqlAgent agent = config.agent()) {
SqlContext ctx = agent.contextFrom("example/select_product").param("product_id", new BigDecimal(0));
ctx.setResultSetType(ResultSet.TYPE_SCROLL_INSENSITIVE);
ResultSet result = agent.query(ctx);
while (result.next()) {
result.first();
assertThat(result.isFirst(), is(true));
result.previous();
assertThat(result.isBeforeFirst(), is(true));
result.next();
assertThat(result.isBeforeFirst(), is(false));
result.last();
assertThat(result.isLast(), is(true));
result.next();
assertThat(result.isAfterLast(), is(true));
result.previous();
assertThat(result.isAfterLast(), is(false));
result.beforeFirst();
assertThat(result.isBeforeFirst(), is(true));
result.afterLast();
assertThat(result.isAfterLast(), is(true));
result.next();
assertThat(result.isWrapperFor(SecretResultSet.class), is(true));
assertThat(result.unwrap(SecretResultSet.class).getCipher(), is(not(nullValue())));
assertThat(result.unwrap(SecretResultSet.class).getCharset(), is(Charset.forName("UTF-8")));
assertThat(result.unwrap(SecretResultSet.class).getCryptColumnNames(),
is(Arrays.asList("PRODUCT_NAME")));
}
result.close();
}
}