Uses of Class
org.h2.store.FileStore
Packages that use FileStore
Package
Description
Contains DML (data manipulation language) and related SQL statements.
Contains high level classes of the database and classes that don't fit in another sub-package.
Security classes, such as encryption and cryptographically secure hash algorithms.
Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa.
Various tools.
LOB data for values.
-
Uses of FileStore in org.h2.command.dml
Fields in org.h2.command.dml declared as FileStore -
Uses of FileStore in org.h2.engine
Methods in org.h2.engine that return FileStore -
Uses of FileStore in org.h2.security
Subclasses of FileStore in org.h2.securityModifier and TypeClassDescriptionclass
A file store that encrypts all data before writing, and decrypts all data after reading. -
Uses of FileStore in org.h2.store
Fields in org.h2.store declared as FileStoreModifier and TypeFieldDescriptionprivate FileStore
FileStoreInputStream.store
private FileStore
FileStoreOutputStream.store
Methods in org.h2.store that return FileStoreModifier and TypeMethodDescriptionstatic FileStore
FileStore.open
(DataHandler handler, String name, String mode) Open a non encrypted file store with the given settings.static FileStore
FileStore.open
(DataHandler handler, String name, String mode, String cipher, byte[] key) Open an encrypted file store with the given settings.static FileStore
FileStore.open
(DataHandler handler, String name, String mode, String cipher, byte[] key, int keyIterations) Open an encrypted file store with the given settings.Open a file at the given location.Constructors in org.h2.store with parameters of type FileStoreModifierConstructorDescriptionFileStoreInputStream
(FileStore store, boolean compression, boolean alwaysClose) FileStoreOutputStream
(FileStore store, String compressionAlgorithm) -
Uses of FileStore in org.h2.tools
Methods in org.h2.tools that return FileStore -
Uses of FileStore in org.h2.value.lob
Fields in org.h2.value.lob declared as FileStoreConstructors in org.h2.value.lob with parameters of type FileStoreModifierConstructorDescriptionLobDataFile
(DataHandler handler, String fileName, FileStore tempFile)