|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FileStore | |
|---|---|
| org.h2.command.dml | Contains DML (data manipulation language) and related SQL statements. |
| org.h2.engine | Contains high level classes of the database and classes that don't fit in another sub-package. |
| org.h2.security | Security classes, such as encryption and cryptographically secure hash algorithms. |
| 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.tools | Various tools. |
| Uses of FileStore in org.h2.command.dml |
|---|
| Methods in org.h2.command.dml that return FileStore | |
|---|---|
FileStore |
ScriptBase.openFile(java.lang.String name,
java.lang.String mode,
boolean mustExist)
|
| Uses of FileStore in org.h2.engine |
|---|
| Methods in org.h2.engine that return FileStore | |
|---|---|
FileStore |
Database.openFile(java.lang.String name,
java.lang.String openMode,
boolean mustExist)
|
FileStore |
SessionRemote.openFile(java.lang.String name,
java.lang.String mode,
boolean mustExist)
|
| Uses of FileStore in org.h2.security |
|---|
| Subclasses of FileStore in org.h2.security | |
|---|---|
class |
SecureFileStore
A file store that encrypts all data before writing, and decrypts all data after reading. |
| Uses of FileStore in org.h2.store |
|---|
| Methods in org.h2.store that return FileStore | |
|---|---|
static FileStore |
FileStore.open(DataHandler handler,
java.lang.String name,
java.lang.String mode)
Open a non encrypted file store with the given settings. |
static FileStore |
FileStore.open(DataHandler handler,
java.lang.String name,
java.lang.String mode,
java.lang.String cipher,
byte[] key)
Open an encrypted file store with the given settings. |
static FileStore |
FileStore.open(DataHandler handler,
java.lang.String name,
java.lang.String mode,
java.lang.String cipher,
byte[] key,
int keyIterations)
Open an encrypted file store with the given settings. |
FileStore |
DataHandler.openFile(java.lang.String name,
java.lang.String mode,
boolean mustExist)
Open a file at the given location. |
| Constructors in org.h2.store with parameters of type FileStore | |
|---|---|
FileStoreInputStream(FileStore store,
DataHandler handler,
boolean compression,
boolean alwaysClose)
|
|
FileStoreOutputStream(FileStore store,
DataHandler handler,
java.lang.String compressionAlgorithm)
|
|
| Uses of FileStore in org.h2.tools |
|---|
| Methods in org.h2.tools that return FileStore | |
|---|---|
FileStore |
Recover.openFile(java.lang.String name,
java.lang.String mode,
boolean mustExist)
INTERNAL |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||