Uses of Class
org.h2.jdbc.JdbcConnection

Packages that use JdbcConnection
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.jdbc Implementation of the JDBC API (package java.sql). 
org.h2.result Implementation of row and internal result sets. 
org.h2.value Data type and value implementations. 
 

Uses of JdbcConnection in org.h2.engine
 

Methods in org.h2.engine that return JdbcConnection
 JdbcConnection Session.createConnection(boolean columnList)
          Create an internal connection.
 

Uses of JdbcConnection in org.h2.jdbc
 

Fields in org.h2.jdbc declared as JdbcConnection
protected  JdbcConnection JdbcStatement.conn
           
 

Constructors in org.h2.jdbc with parameters of type JdbcConnection
JdbcBlob(JdbcConnection conn, Value value, int id)
          INTERNAL
JdbcClob(JdbcConnection conn, Value value, int id)
          INTERNAL
JdbcConnection(JdbcConnection clone)
          INTERNAL
 

Uses of JdbcConnection in org.h2.result
 

Constructors in org.h2.result with parameters of type JdbcConnection
UpdatableRow(JdbcConnection conn, ResultInterface result)
          Construct a new object that is linked to the result set.
 

Uses of JdbcConnection in org.h2.value
 

Methods in org.h2.value with parameters of type JdbcConnection
static java.lang.Object DataType.convertTo(SessionInterface session, JdbcConnection conn, Value v, java.lang.Class<?> paramClass)
          Convert a value to the specified class.