Uses of Class
org.h2.engine.Session
-
Packages that use Session Package Description 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.jdbc.meta Implementation of the JDBC database metadata API (package java.sql).org.h2.result Implementation of row and internal result sets.org.h2.value Data type and value implementations. -
-
Uses of Session in org.h2.engine
Subclasses of Session in org.h2.engine Modifier and Type Class Description classSessionLocalA session represents an embedded database connection.classSessionRemoteThe client side part of a session when using the server mode.Fields in org.h2.engine declared as Session Modifier and Type Field Description private SessionSessionRemote. embeddedFields in org.h2.engine with type parameters of type Session Modifier and Type Field Description private static java.lang.ThreadLocal<Session>SessionLocal. THREAD_LOCAL_SESSIONThread local session for comparison operations between different data types.Methods in org.h2.engine that return Session Modifier and Type Method Description SessionSessionRemote. connectEmbeddedOrServer(boolean openNew)Open a new (remote or embedded) session.(package private) static SessionSessionLocal. getThreadLocalSession()SessionSession. setThreadLocalSession()Sets this session as thread local session, if this session is a local session.SessionSessionLocal. setThreadLocalSession()Methods in org.h2.engine with parameters of type Session Modifier and Type Method Description voidSession. resetThreadLocalSession(Session oldSession)Resets old thread local session.voidSessionLocal. resetThreadLocalSession(Session oldSession) -
Uses of Session in org.h2.jdbc
Fields in org.h2.jdbc declared as Session Modifier and Type Field Description private SessionJdbcConnection. sessionprotected SessionJdbcStatement. sessionMethods in org.h2.jdbc that return Session Modifier and Type Method Description SessionJdbcConnection. getSession()INTERNALConstructors in org.h2.jdbc with parameters of type Session Constructor Description JdbcConnection(Session session, java.lang.String user, java.lang.String url)INTERNAL -
Uses of Session in org.h2.jdbc.meta
Fields in org.h2.jdbc.meta declared as Session Modifier and Type Field Description private SessionDatabaseMetaLegacy. sessionConstructors in org.h2.jdbc.meta with parameters of type Session Constructor Description DatabaseMetaLegacy(Session session) -
Uses of Session in org.h2.result
Methods in org.h2.result with parameters of type Session Modifier and Type Method Description ResultInterfaceFetchedResult. createShallowCopy(Session targetSession)LocalResultLocalResult. createShallowCopy(Session targetSession)Create a shallow copy of the result set.ResultInterfaceResultInterface. createShallowCopy(Session targetSession)Create a shallow copy of the result set.ResultInterfaceResultWithPaddedStrings. createShallowCopy(Session targetSession)SimpleResultSimpleResult. createShallowCopy(Session targetSession) -
Uses of Session in org.h2.value
Fields in org.h2.value declared as Session Modifier and Type Field Description private SessionTransfer. sessionMethods in org.h2.value with parameters of type Session Modifier and Type Method Description private static ValueValueToObjectConverter. arrayToValue(Session session, java.lang.Object x)static ValueValueToObjectConverter. objectToValue(Session session, java.lang.Object x, int type)Convert a Java object to a value.private static ValueValueToObjectConverter. otherToValue(Session session, java.lang.Object x)private static java.util.LinkedHashMap<java.lang.String,TypeInfo>ValueToObjectConverter. readResultSetMeta(Session session, java.sql.ResultSetMetaData meta, int columnCount)static ValueValueToObjectConverter. readValue(Session session, JdbcResultSet rs, int columnIndex)Read a value from the given result set.static ValueValueToObjectConverter2. readValue(Session session, java.sql.ResultSet rs, int columnIndex, int type)Read a value from the given result set.private static ValueValueToObjectConverter2. readValueOther(Session session, java.sql.ResultSet rs, int columnIndex, int type)(package private) static ValueValueToObjectConverter. resultSetToValue(Session session, java.sql.ResultSet rs)voidTransfer. setSession(Session session)Set the session.Constructors in org.h2.value with parameters of type Session Constructor Description Transfer(Session session, java.net.Socket s)Create a new transfer object for the specified session.
-