Uses of Class
org.h2.engine.Database

Packages that use Database
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.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. 
 

Uses of Database in org.h2.engine
 

Fields in org.h2.engine declared as Database
protected  Database DbObjectBase.database
          The database.
 

Methods in org.h2.engine that return Database
 Database DbObject.getDatabase()
          Get the database.
 Database DbObjectBase.getDatabase()
           
 Database Session.getDatabase()
           
 

Methods in org.h2.engine with parameters of type Database
protected  void DbObjectBase.initDbObjectBase(Database db, int objectId, java.lang.String name, java.lang.String traceModule)
          Initialize some attributes of this object.
 

Constructors in org.h2.engine with parameters of type Database
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, java.lang.String name, java.lang.String traceModule)
           
Role(Database database, int id, java.lang.String roleName, boolean system)
           
Session(Database database, User user, int id)
           
Setting(Database database, int id, java.lang.String settingName)
           
User(Database database, int id, java.lang.String userName, boolean systemUser)
           
UserAggregate(Database db, int id, java.lang.String name, java.lang.String className, boolean force)
           
UserDataType(Database database, int id, java.lang.String name)
           
 

Uses of Database in org.h2.expression
 

Methods in org.h2.expression with parameters of type Database
static Function Function.getFunction(Database database, java.lang.String name)
          Get an instance of the given function for this database.
 

Constructors in org.h2.expression with parameters of type Database
CompareLike(Database db, Expression left, Expression right, Expression escape, boolean regexp)
           
ConditionIn(Database database, Expression left, java.util.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, java.lang.String schemaName, java.lang.String tableAlias, java.lang.String columnName)
           
Function(Database database, org.h2.expression.FunctionInfo info)
           
 

Uses of Database in org.h2.index
 

Methods in org.h2.index that return Database
 Database MultiVersionIndex.getDatabase()
           
 

Uses of Database in org.h2.result
 

Constructors in org.h2.result with parameters of type Database
SortOrder(Database database, int[] index, int[] sortType)
          Construct a new sort order object.
 

Uses of Database in org.h2.schema
 

Constructors in org.h2.schema with parameters of type Database
Schema(Database database, int id, java.lang.String schemaName, User owner, boolean system)
          Create a new schema object.
 

Uses of Database in org.h2.store
 

Methods in org.h2.store with parameters of type Database
static WriterThread WriterThread.create(Database database, int writeDelay)
          Create and start a new writer thread for the given database.
 

Constructors in org.h2.store with parameters of type Database
PageStore(Database database, java.lang.String fileName, java.lang.String accessMode, int cacheSizeDefault)
          Create a new page store object.