Uses of Class
org.h2.jdbc.JdbcResultSet
-
Packages that use JdbcResultSet Package Description org.h2.jdbc Implementation of the JDBC API (package java.sql).org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.value Data type and value implementations. -
-
Uses of JdbcResultSet in org.h2.jdbc
Fields in org.h2.jdbc declared as JdbcResultSet Modifier and Type Field Description protected JdbcResultSet
JdbcStatement. generatedKeys
protected JdbcResultSet
JdbcStatement. resultSet
private JdbcResultSet
JdbcResultSetMetaData. rs
Methods in org.h2.jdbc that return JdbcResultSet Modifier and Type Method Description private JdbcResultSet
JdbcCallableStatement. getOpenResultSet()
private JdbcResultSet
JdbcDatabaseMetaData. getResultSet(ResultInterface result)
Constructors in org.h2.jdbc with parameters of type JdbcResultSet Constructor Description JdbcResultSetMetaData(JdbcResultSet rs, JdbcPreparedStatement prep, ResultInterface result, java.lang.String catalog, Trace trace, int id)
-
Uses of JdbcResultSet in org.h2.schema
Methods in org.h2.schema that return JdbcResultSet Modifier and Type Method Description private static JdbcResultSet
TriggerObject. createResultSet(JdbcConnection conn, Table table, Row row, boolean updatable)
-
Uses of JdbcResultSet in org.h2.value
Methods in org.h2.value with parameters of type JdbcResultSet Modifier and Type Method Description static Value
ValueToObjectConverter. readValue(Session session, JdbcResultSet rs, int columnIndex)
Read a value from the given result set.
-