Uses of Class
org.h2.engine.DbObject
Packages that use DbObject
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains DDL (data definition language) and related SQL statements.
Contains DML (data manipulation language) and related SQL statements.
Contains queries.
Database constraints such as check constraints, unique constraints, and referential constraints.
Contains high level classes of the database and classes that don't fit in another sub-package.
Expressions include mathematical operations, simple values, and others.
Various table index implementations, as well as cursors to navigate in an index.
Implementation of the JDBC database metadata API (package java.sql).
Utility classes for compatibility with other database, for example MySQL.
Helper classes to use the MVStore in the H2 database.
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
Classes related to a table and table meta data.
-
Uses of DbObject in org.h2.command
Methods in org.h2.command that return types with arguments of type DbObjectModifier and TypeMethodDescriptionCommand.getDependencies()
CommandContainer.getDependencies()
CommandList.getDependencies()
Method parameters in org.h2.command with type arguments of type DbObjectModifier and TypeMethodDescriptionvoid
Prepared.collectDependencies
(HashSet<DbObject> dependencies) Find and collect all DbObjects, this Prepared depends on. -
Uses of DbObject in org.h2.command.ddl
Methods in org.h2.command.ddl with parameters of type DbObjectModifier and TypeMethodDescriptionprivate void
AlterTableAlterColumn.checkViewsAreValid
(DbObject tableOrView) Check that a table or view is still valid.private void
GrantRevoke.grantRight
(DbObject object) private void
GrantRevoke.revokeRight
(DbObject object) -
Uses of DbObject in org.h2.command.dml
Fields in org.h2.command.dml with type parameters of type DbObjectModifier and TypeFieldDescriptionprivate static final Comparator
<? super DbObject> ScriptCommand.BY_NAME_COMPARATOR
Methods in org.h2.command.dml with type parameters of type DbObjectModifier and TypeMethodDescriptionprivate static <T extends DbObject>
T[]ScriptCommand.sorted
(Collection<T> collection, Class<T> clazz) Methods in org.h2.command.dml that return DbObjectModifier and TypeMethodDescriptionprivate static <T extends DbObject>
T[]ScriptCommand.sorted
(Collection<T> collection, Class<T> clazz) Method parameters in org.h2.command.dml with type arguments of type DbObjectModifier and TypeMethodDescriptionvoid
Delete.collectDependencies
(HashSet<DbObject> dependencies) void
Explain.collectDependencies
(HashSet<DbObject> dependencies) void
Insert.collectDependencies
(HashSet<DbObject> dependencies) void
Merge.collectDependencies
(HashSet<DbObject> dependencies) void
MergeUsing.collectDependencies
(HashSet<DbObject> dependencies) void
Update.collectDependencies
(HashSet<DbObject> dependencies) -
Uses of DbObject in org.h2.command.query
Method parameters in org.h2.command.query with type arguments of type DbObject -
Uses of DbObject in org.h2.constraint
Subclasses of DbObject in org.h2.constraintModifier and TypeClassDescriptionclass
The base class for constraint checking.class
A check constraint.class
A domain constraint.class
A referential constraint.class
A unique constraint. -
Uses of DbObject in org.h2.engine
Subclasses of DbObject in org.h2.engineModifier and TypeClassDescriptionfinal class
Represents a database object comment.final class
An access right.class
A right owner (sometimes called principal).final class
Represents a role.final class
A persistent database setting.final class
Represents a user object.Fields in org.h2.engine declared as DbObjectFields in org.h2.engine with type parameters of type DbObjectMethods in org.h2.engine that return DbObjectMethods in org.h2.engine that return types with arguments of type DbObjectModifier and TypeMethodDescriptionDbObject.getChildren()
Get the list of dependent children (for tables, this includes indexes and so on).Role.getChildren()
User.getChildren()
Database.getMap
(int type) Methods in org.h2.engine with parameters of type DbObjectModifier and TypeMethodDescriptionvoid
Database.addDatabaseObject
(SessionLocal session, DbObject obj) Add an object to the database.private void
Database.addMeta
(SessionLocal session, DbObject obj) Database.findComment
(DbObject object) Get the comment for the given database object if one exists, or null if not.private String
Right.getCreateSQLForCopy
(DbObject object) (package private) static String
Get the comment key name for the given database object.RightOwner.getRightForObject
(DbObject object) Get the 'grant schema' right of this object.void
RightOwner.grantRight
(DbObject object, Right right) Grant a right for the given table.static void
MetaRecord.populateRowFromDBObject
(DbObject obj, SearchRow r) Copy metadata from the specified object into specified search row.void
Database.removeDatabaseObject
(SessionLocal session, DbObject obj) Remove the object from the database.void
Database.renameDatabaseObject
(SessionLocal session, DbObject obj, String newName) Rename a database object.(package private) void
RightOwner.revokeRight
(DbObject object) Revoke the right for the given object (table or schema).void
Database.updateMeta
(SessionLocal session, DbObject obj) Update an object in the system table.private void
Database.updateMetaAndFirstLevelChildren
(SessionLocal session, DbObject obj) Constructors in org.h2.engine with parameters of type DbObject -
Uses of DbObject in org.h2.expression
Methods in org.h2.expression that return types with arguments of type DbObjectMethods in org.h2.expression with parameters of type DbObjectModifier and TypeMethodDescriptionvoid
ExpressionVisitor.addDependency
(DbObject obj) Add a new dependency to the set of dependencies.Method parameters in org.h2.expression with type arguments of type DbObjectModifier and TypeMethodDescriptionstatic ExpressionVisitor
ExpressionVisitor.getDependenciesVisitor
(HashSet<DbObject> dependencies) Create a new visitor object to collect dependencies. -
Uses of DbObject in org.h2.index
Subclasses of DbObject in org.h2.indexModifier and TypeClassDescriptionclass
An index for the DUAL table.class
An index.class
A linked index is a index for a linked (remote) table.class
The index implementation for meta data tables.class
An index for the SYSTEM_RANGE table.class
This object represents a virtual index for a query.class
An index for a virtual table that returns a result set.class
An base class for indexes of virtual tables. -
Uses of DbObject in org.h2.jdbc.meta
Methods in org.h2.jdbc.meta with parameters of type DbObjectModifier and TypeMethodDescriptionprivate void
DatabaseMetaLocal.addPrivileges
(SimpleResult result, Value catalogValue, String schemaName, String tableName, DbObject grantee, int rightMask, CompareLike columnLike, Column[] columns) -
Uses of DbObject in org.h2.mode
Subclasses of DbObject in org.h2.modeModifier and TypeClassDescriptionfinal class
pg_catalog
schema.final class
This class is responsible to build the pg_catalog tables. -
Uses of DbObject in org.h2.mvstore.db
Subclasses of DbObject in org.h2.mvstore.dbModifier and TypeClassDescriptionclass
An index that delegates indexing to another index.class
MVIndex<K,
V> An index that stores the data in an MVStore.class
A table stored in a MVStore.final class
An index stored in a MVStore.class
This is an index based on a MVRTreeMap.class
A table stored in a MVStore. -
Uses of DbObject in org.h2.schema
Subclasses of DbObject in org.h2.schemaModifier and TypeClassDescriptionfinal class
A user-defined constant as created by the SQL statement CREATE CONSTANTfinal class
Represents a domain.final class
Represents a user-defined function, or alias.final class
Information schema.class
Meta data schema.class
A schema as created by the SQL statement CREATE SCHEMAclass
Any database object that is stored in a schema.final class
A sequence is created using the statement CREATE SEQUENCEfinal class
A trigger is created using the statement CREATE TRIGGERfinal class
Represents a user-defined aggregate function.class
User-defined Java function or aggregate function.Methods in org.h2.schema that return types with arguments of type DbObjectMethods in org.h2.schema with parameters of type DbObjectModifier and TypeMethodDescriptionprivate String
Schema.getUniqueName
(DbObject obj, Map<String, ? extends SchemaObject> map, String prefix) -
Uses of DbObject in org.h2.table
Subclasses of DbObject in org.h2.tableModifier and TypeClassDescriptionclass
A data change delta table.class
The DUAL table for selects without a FROM clause.class
A table backed by a system or user-defined function that returns a result set.final class
This class is responsible to build the INFORMATION_SCHEMA tables.final class
This class is responsible to build the legacy variant of INFORMATION_SCHEMA tables.class
This class is responsible to build the database meta data pseudo tables.class
The table SYSTEM_RANGE is a virtual table that generates incrementing numbers with a given start end point.class
This is the base class for most tables.class
The base class of a regular table, or a user defined table.class
A linked table contains connection information for a table accessible by JDBC.class
Synonym for an existing table or view.class
A table for table value constructor.class
A view is a virtual table that is defined by a query.class
A base class for virtual tables that construct all their content at once.class
A base class for virtual tables.Methods in org.h2.table that return types with arguments of type DbObjectMethods in org.h2.table with parameters of type DbObjectModifier and TypeMethodDescriptionprivate void
InformationSchemaTable.addPrivilege
(SessionLocal session, ArrayList<Row> rows, DbObject grantee, String catalog, Table table, String column, String right) private void
InformationSchemaTableLegacy.addPrivilege
(SessionLocal session, ArrayList<Row> rows, DbObject grantee, String catalog, Table table, String column, String right) private void
InformationSchemaTable.addPrivileges
(SessionLocal session, ArrayList<Row> rows, DbObject grantee, String catalog, Table table, String column, int rightMask) private void
InformationSchemaTableLegacy.addPrivileges
(SessionLocal session, ArrayList<Row> rows, DbObject grantee, String catalog, Table table, String column, int rightMask) private static void
Method parameters in org.h2.table with type arguments of type DbObjectModifier and TypeMethodDescriptionvoid
Table.addDependencies
(HashSet<DbObject> dependencies) Add all objects that this table depends on to the hash set.void
TableView.addDependencies
(HashSet<DbObject> dependencies) private static void