Package | Description |
---|---|
org.h2.engine |
Contains high level classes of the database and classes that don't fit in another sub-package.
|
org.h2.expression |
Expressions include mathematical operations, conditions, simple values, and functions.
|
org.h2.index |
Various table index implementations, as well as cursors to navigate in an index.
|
org.h2.jmx |
Implementation of the Java Management Extension (JMX) features.
|
org.h2.result |
Implementation of row and internal result sets.
|
org.h2.schema |
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
|
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.
|
Modifier and Type | Field and Description |
---|---|
protected Database |
DbObjectBase.database
The database.
|
Modifier and Type | Method and Description |
---|---|
Database |
DbObjectBase.getDatabase() |
Database |
Session.getDatabase() |
Database |
DbObject.getDatabase()
Get the database.
|
Modifier and Type | Method and Description |
---|---|
protected void |
DbObjectBase.initDbObjectBase(Database db,
int objectId,
String name,
String traceModule)
Initialize some attributes of this object.
|
Constructor and Description |
---|
Comment(Database database,
int id,
DbObject obj) |
Right(Database db,
int id,
RightOwner grantee,
int grantedRight,
Table grantedRightOnTable) |
Right(Database db,
int id,
RightOwner grantee,
Role grantedRole) |
RightOwner(Database database,
int id,
String name,
String traceModule) |
Role(Database database,
int id,
String roleName,
boolean system) |
Session(Database database,
User user,
int id) |
Setting(Database database,
int id,
String settingName) |
User(Database database,
int id,
String userName,
boolean systemUser) |
UserAggregate(Database db,
int id,
String name,
String className,
boolean force) |
UserDataType(Database database,
int id,
String name) |
Modifier and Type | Method and Description |
---|---|
static Function |
Function.getFunction(Database database,
String name)
Get an instance of the given function for this database.
|
Constructor and Description |
---|
CompareLike(Database db,
Expression left,
Expression right,
Expression escape,
boolean regexp) |
ConditionIn(Database database,
Expression left,
ArrayList<Expression> values)
Create a new IN(..) condition.
|
ConditionInSelect(Database database,
Expression left,
Query query,
boolean all,
int compareType) |
ExpressionColumn(Database database,
Column column) |
ExpressionColumn(Database database,
String schemaName,
String tableAlias,
String columnName) |
Function(Database database,
org.h2.expression.FunctionInfo info) |
Modifier and Type | Method and Description |
---|---|
Database |
MultiVersionIndex.getDatabase() |
Modifier and Type | Method and Description |
---|---|
static void |
DatabaseInfo.registerMBean(ConnectionInfo connectionInfo,
Database database)
Registers an MBean for the database.
|
Constructor and Description |
---|
SortOrder(Database database,
int[] index,
int[] sortType)
Construct a new sort order object.
|
Constructor and Description |
---|
Schema(Database database,
int id,
String schemaName,
User owner,
boolean system)
Create a new schema object.
|
Modifier and Type | Method and Description |
---|---|
static WriterThread |
WriterThread.create(Database database,
int writeDelay)
Create and start a new writer thread for the given database.
|
Constructor and Description |
---|
PageStore(Database database,
String fileName,
String accessMode,
int cacheSizeDefault)
Create a new page store object.
|
Copyright © 2016 JBoss by Red Hat. All Rights Reserved.