Uses of Interface
org.h2.engine.SessionInterface

Packages that use SessionInterface
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.value Data type and value implementations. 
 

Uses of SessionInterface in org.h2.engine
 

Classes in org.h2.engine that implement SessionInterface
 class Session
          A session represents an embedded database connection.
 class SessionRemote
          The client side part of a session when using the server mode.
 class SessionWithState
          The base class for both remote and embedded sessions.
 

Methods in org.h2.engine that return SessionInterface
 SessionInterface SessionFactory.createSession(ConnectionInfo ci)
          Create a new session.
 SessionInterface SessionRemote.createSession(ConnectionInfo ci)
          Open a new (remote or embedded) session.
 SessionInterface Session.reconnect(boolean write)
           
 SessionInterface SessionInterface.reconnect(boolean write)
          Close the connection and open a new connection.
 SessionInterface SessionRemote.reconnect(boolean write)
           
 

Uses of SessionInterface in org.h2.jdbc
 

Fields in org.h2.jdbc declared as SessionInterface
protected  SessionInterface JdbcStatement.session
           
 

Methods in org.h2.jdbc that return SessionInterface
 SessionInterface JdbcConnection.getSession()
          INTERNAL
 

Constructors in org.h2.jdbc with parameters of type SessionInterface
JdbcConnection(SessionInterface session, java.lang.String user, java.lang.String url)
          INTERNAL
 

Uses of SessionInterface in org.h2.value
 

Methods in org.h2.value with parameters of type SessionInterface
static java.lang.Object DataType.convertTo(SessionInterface session, JdbcConnection conn, Value v, java.lang.Class<?> paramClass)
          Convert a value to the specified class.
static Value DataType.convertToValue(SessionInterface session, java.lang.Object x, int type)
          Convert a Java object to a value.
static Value DataType.readValue(SessionInterface session, java.sql.ResultSet rs, int columnIndex, int type)
          Read a value from the given result set.
 void Transfer.setSession(SessionInterface session)
          Set the session.
 

Constructors in org.h2.value with parameters of type SessionInterface
Transfer(SessionInterface session)
          Create a new transfer object for the specified session.