Uses of Class
org.h2.engine.SessionRemote
-
Packages that use SessionRemote Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.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.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa.org.h2.value.lob LOB data for values. -
-
Uses of SessionRemote in org.h2.command
Fields in org.h2.command declared as SessionRemote Modifier and Type Field Description private SessionRemote
CommandRemote. session
Methods in org.h2.command with parameters of type SessionRemote Modifier and Type Method Description private void
CommandRemote. prepare(SessionRemote s, boolean createParams)
Constructors in org.h2.command with parameters of type SessionRemote Constructor Description CommandRemote(SessionRemote session, java.util.ArrayList<Transfer> transferList, java.lang.String sql, int fetchSize)
-
Uses of SessionRemote in org.h2.jdbc.meta
Fields in org.h2.jdbc.meta declared as SessionRemote Modifier and Type Field Description private SessionRemote
DatabaseMetaRemote. session
Constructors in org.h2.jdbc.meta with parameters of type SessionRemote Constructor Description DatabaseMetaRemote(SessionRemote session, java.util.ArrayList<Transfer> transferList)
-
Uses of SessionRemote in org.h2.result
Fields in org.h2.result declared as SessionRemote Modifier and Type Field Description private SessionRemote
ResultRemote. session
Constructors in org.h2.result with parameters of type SessionRemote Constructor Description ResultRemote(SessionRemote session, Transfer transfer, int id, int columnCount, int fetchSize)
-
Uses of SessionRemote in org.h2.store
Fields in org.h2.store declared as SessionRemote Modifier and Type Field Description private SessionRemote
LobStorageFrontend. sessionRemote
private SessionRemote
LobStorageRemoteInputStream. sessionRemote
Constructors in org.h2.store with parameters of type SessionRemote Constructor Description LobStorageFrontend(SessionRemote handler)
LobStorageRemoteInputStream(SessionRemote handler, long lobId, byte[] hmac)
-
Uses of SessionRemote in org.h2.value.lob
Fields in org.h2.value.lob declared as SessionRemote Modifier and Type Field Description private SessionRemote
LobDataFetchOnDemand. handler
-