| 程序包 | 说明 |
|---|---|
| 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.
|
| org.h2.value.lob |
LOB data for values.
|
| 限定符和类型 | 方法和说明 |
|---|---|
FileStore |
Database.openFile(String name,
String openMode,
boolean mustExist) |
FileStore |
SessionRemote.openFile(String name,
String mode,
boolean mustExist) |
FileStore |
SessionRemote.openFile(String name,
String mode,
boolean mustExist) |
FileStore |
Database.openFile(String name,
String openMode,
boolean mustExist) |
| 限定符和类型 | 类和说明 |
|---|---|
class |
SecureFileStore
A file store that encrypts all data before writing, and decrypts all data
after reading.
|
| 限定符和类型 | 方法和说明 |
|---|---|
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)
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)
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.
|
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.
|
FileStore |
DataHandler.openFile(String name,
String mode,
boolean mustExist)
Open a file at the given location.
|
| 构造器和说明 |
|---|
FileStoreInputStream(FileStore store,
boolean compression,
boolean alwaysClose) |
FileStoreInputStream(FileStore store,
boolean compression,
boolean alwaysClose) |
FileStoreOutputStream(FileStore store,
String compressionAlgorithm) |
FileStoreOutputStream(FileStore store,
String compressionAlgorithm) |
| 限定符和类型 | 方法和说明 |
|---|---|
FileStore |
Recover.openFile(String name,
String mode,
boolean mustExist)
INTERNAL
|
FileStore |
Recover.openFile(String name,
String mode,
boolean mustExist)
INTERNAL
|
| 构造器和说明 |
|---|
LobDataFile(DataHandler handler,
String fileName,
FileStore tempFile) |
LobDataFile(DataHandler handler,
String fileName,
FileStore tempFile) |
Copyright © 2022. All rights reserved.