Uses of Class
org.h2.value.ValueLob
-
Packages that use ValueLob Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.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.util Internal utility classes.org.h2.value Data type and value implementations.org.h2.value.lob LOB data for values. -
-
Uses of ValueLob in org.h2.engine
Fields in org.h2.engine declared as ValueLob Modifier and Type Field Description (package private) ValueLob
SessionLocal.TimeoutValue. value
The value.Fields in org.h2.engine with type parameters of type ValueLob Modifier and Type Field Description private java.util.HashMap<java.lang.String,ValueLob>
SessionLocal. removeLobMap
private java.util.ArrayList<ValueLob>
SessionLocal. temporaryLobs
The temporary LOBs that need to be removed on commit.Methods in org.h2.engine that return ValueLob Modifier and Type Method Description abstract ValueLob
Session. addTemporaryLob(ValueLob v)
Add a temporary LOB, which is closed when the session commits.ValueLob
SessionLocal. addTemporaryLob(ValueLob v)
ValueLob
SessionRemote. addTemporaryLob(ValueLob v)
Methods in org.h2.engine with parameters of type ValueLob Modifier and Type Method Description abstract ValueLob
Session. addTemporaryLob(ValueLob v)
Add a temporary LOB, which is closed when the session commits.ValueLob
SessionLocal. addTemporaryLob(ValueLob v)
ValueLob
SessionRemote. addTemporaryLob(ValueLob v)
void
SessionLocal. removeAtCommit(ValueLob v)
Remember that the given LOB value must be removed at commit.void
SessionLocal. removeAtCommitStop(ValueLob v)
Do not remove this LOB value at commit any longer.Constructors in org.h2.engine with parameters of type ValueLob Constructor Description TimeoutValue(ValueLob v)
-
Uses of ValueLob in org.h2.mvstore.db
Methods in org.h2.mvstore.db that return ValueLob Modifier and Type Method Description ValueLob
LobStorageMap. copyLob(ValueLob old, int tableId)
Methods in org.h2.mvstore.db with parameters of type ValueLob Modifier and Type Method Description ValueLob
LobStorageMap. copyLob(ValueLob old, int tableId)
void
LobStorageMap. removeLob(ValueLob lob)
-
Uses of ValueLob in org.h2.store
Methods in org.h2.store that return ValueLob Modifier and Type Method Description ValueLob
LobStorageFrontend. copyLob(ValueLob old, int tableId)
ValueLob
LobStorageInterface. copyLob(ValueLob old, int tableId)
Copy a lob.Methods in org.h2.store with parameters of type ValueLob Modifier and Type Method Description ValueLob
LobStorageFrontend. copyLob(ValueLob old, int tableId)
ValueLob
LobStorageInterface. copyLob(ValueLob old, int tableId)
Copy a lob.void
LobStorageFrontend. removeLob(ValueLob lob)
void
LobStorageInterface. removeLob(ValueLob lob)
Delete a LOB (from the database, if it is stored there). -
Uses of ValueLob in org.h2.util
Methods in org.h2.util with parameters of type ValueLob Modifier and Type Method Description private static void
JdbcUtils. setLob(java.sql.PreparedStatement prep, int parameterIndex, ValueLob value)
-
Uses of ValueLob in org.h2.value
Subclasses of ValueLob in org.h2.value Modifier and Type Class Description class
ValueBlob
Implementation of the BINARY LARGE OBJECT data type.class
ValueClob
Implementation of the CHARACTER LARGE OBJECT data type.Methods in org.h2.value that return ValueLob Modifier and Type Method Description ValueLob
ValueBlob. copy(DataHandler database, int tableId)
ValueLob
ValueClob. copy(DataHandler database, int tableId)
abstract ValueLob
ValueLob. copy(DataHandler database, int tableId)
Copy a large value, to be used in the given table.ValueLob
ValueLob. copyToResult()
Create an independent copy of this value, that will be bound to a result. -
Uses of ValueLob in org.h2.value.lob
Methods in org.h2.value.lob with parameters of type ValueLob Modifier and Type Method Description void
LobData. remove(ValueLob value)
Remove the underlying resource, if any.void
LobDataDatabase. remove(ValueLob value)
void
LobDataFile. remove(ValueLob value)
-