Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
FileStore |
Database.openFile(String name,
String openMode,
boolean mustExist) |
FileStore |
SessionRemote.openFile(String name,
String mode,
boolean mustExist) |
Modifier and Type | Class and Description |
---|---|
class |
SecureFileStore
A file store that encrypts all data before writing, and decrypts all data
after reading.
|
Modifier and Type | Method and Description |
---|---|
static 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.
|
FileStore |
DataHandler.openFile(String name,
String mode,
boolean mustExist)
Open a file at the given location.
|
Constructor and Description |
---|
FileStoreInputStream(FileStore store,
DataHandler handler,
boolean compression,
boolean alwaysClose) |
FileStoreOutputStream(FileStore store,
DataHandler handler,
String compressionAlgorithm) |
Modifier and Type | Method and Description |
---|---|
FileStore |
Recover.openFile(String name,
String mode,
boolean mustExist)
INTERNAL
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.