Uses of Class
org.h2.jdbc.JdbcConnection
-
Packages that use JdbcConnection Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.expression.aggregate Aggregate functions.org.h2.jdbc Implementation of the JDBC API (package java.sql).org.h2.jdbcx Implementation of the extended JDBC API (package javax.sql).org.h2.result Implementation of row and internal result sets.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.server A small FTP server.org.h2.util Internal utility classes.org.h2.value Data type and value implementations. -
-
Uses of JdbcConnection in org.h2.engine
Methods in org.h2.engine that return JdbcConnection Modifier and Type Method Description JdbcConnection
SessionLocal. createConnection(boolean columnList)
Create an internal connection. -
Uses of JdbcConnection in org.h2.expression.aggregate
Fields in org.h2.expression.aggregate declared as JdbcConnection Modifier and Type Field Description private JdbcConnection
JavaAggregate. userConnection
-
Uses of JdbcConnection in org.h2.jdbc
Fields in org.h2.jdbc declared as JdbcConnection Modifier and Type Field Description private JdbcConnection
JdbcArray. conn
private JdbcConnection
JdbcDatabaseMetaData. conn
(package private) JdbcConnection
JdbcLob. conn
JDBC connection.private JdbcConnection
JdbcResultSet. conn
private JdbcConnection
JdbcSavepoint. conn
protected JdbcConnection
JdbcStatement. conn
Constructors in org.h2.jdbc with parameters of type JdbcConnection Constructor Description JdbcArray(JdbcConnection conn, Value value, int id)
INTERNALJdbcBlob(JdbcConnection conn, Value value, JdbcLob.State state, int id)
INTERNALJdbcCallableStatement(JdbcConnection conn, java.lang.String sql, int id, int resultSetType, int resultSetConcurrency)
JdbcClob(JdbcConnection conn, Value value, JdbcLob.State state, int id)
INTERNALJdbcConnection(JdbcConnection clone)
INTERNALJdbcDatabaseMetaData(JdbcConnection conn, Trace trace, int id)
JdbcLob(JdbcConnection conn, Value value, JdbcLob.State state, int type, int id)
JdbcPreparedStatement(JdbcConnection conn, java.lang.String sql, int id, int resultSetType, int resultSetConcurrency, java.lang.Object generatedKeysRequest)
JdbcResultSet(JdbcConnection conn, JdbcPreparedStatement preparedStatement, CommandInterface command, ResultInterface result, int id, boolean scrollable, boolean updatable, java.util.HashMap<java.lang.String,java.lang.Integer> columnLabelMap)
JdbcResultSet(JdbcConnection conn, JdbcStatement stat, CommandInterface command, ResultInterface result, int id, boolean scrollable, boolean updatable, boolean triggerUpdatable)
JdbcSavepoint(JdbcConnection conn, int savepointId, java.lang.String name, Trace trace, int id)
JdbcSQLXML(JdbcConnection conn, Value value, JdbcLob.State state, int id)
INTERNALJdbcStatement(JdbcConnection conn, int id, int resultSetType, int resultSetConcurrency)
-
Uses of JdbcConnection in org.h2.jdbcx
Subclasses of JdbcConnection in org.h2.jdbcx Modifier and Type Class Description (package private) class
JdbcXAConnection.PooledJdbcConnection
A pooled connection.Fields in org.h2.jdbcx declared as JdbcConnection Modifier and Type Field Description private JdbcConnection
JdbcXAConnection. physicalConn
Constructors in org.h2.jdbcx with parameters of type JdbcConnection Constructor Description JdbcXAConnection(JdbcDataSourceFactory factory, int id, JdbcConnection physicalConn)
PooledJdbcConnection(JdbcConnection conn)
-
Uses of JdbcConnection in org.h2.result
Fields in org.h2.result declared as JdbcConnection Modifier and Type Field Description private JdbcConnection
UpdatableRow. conn
Constructors in org.h2.result with parameters of type JdbcConnection Constructor Description UpdatableRow(JdbcConnection conn, ResultInterface result)
Construct a new object that is linked to the result set. -
Uses of JdbcConnection in org.h2.schema
Methods in org.h2.schema with parameters of type JdbcConnection Modifier and Type Method Description private static java.lang.Object[]
TriggerObject. convertToObjectList(Row row, JdbcConnection conn)
private static JdbcResultSet
TriggerObject. createResultSet(JdbcConnection conn, Table table, Row row, boolean updatable)
-
Uses of JdbcConnection in org.h2.server
Fields in org.h2.server declared as JdbcConnection Modifier and Type Field Description private JdbcConnection
TcpServer. managementDb
-
Uses of JdbcConnection in org.h2.util
Methods in org.h2.util with parameters of type JdbcConnection Modifier and Type Method Description static void
JdbcUtils. set(java.sql.PreparedStatement prep, int parameterIndex, Value value, JdbcConnection conn)
Set a value as a parameter in a prepared statement.private static void
JdbcUtils. setOther(java.sql.PreparedStatement prep, int parameterIndex, Value value, JdbcConnection conn)
-
Uses of JdbcConnection in org.h2.value
Methods in org.h2.value with parameters of type JdbcConnection Modifier and Type Method Description private static java.lang.Object
ValueToObjectConverter. valueToArray(java.lang.Class<?> type, Value value, JdbcConnection conn)
static java.lang.Object
ValueToObjectConverter. valueToDefaultArray(Value value, JdbcConnection conn, boolean forJdbc)
Converts the specified array value to array of default Java objects for its type.static java.lang.Object
ValueToObjectConverter. valueToDefaultObject(Value value, JdbcConnection conn, boolean forJdbc)
Converts the specified value to the default Java object for its type.static <T> T
ValueToObjectConverter. valueToObject(java.lang.Class<T> type, Value value, JdbcConnection conn)
Converts the specified value to an object of the specified type.private static java.lang.Object
ValueToObjectConverter. valueToOther(java.lang.Class<?> type, Value value, JdbcConnection conn)
-