Uses of Class
org.h2.schema.SchemaObject
Packages that use SchemaObject
Package
Description
Contains DDL (data definition language) and related SQL statements.
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.
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 SchemaObject in org.h2.command.ddl
Methods in org.h2.command.ddl with parameters of type SchemaObjectModifier and TypeMethodDescriptionprivate void
AlterTableAlterColumn.checkViews
(SchemaObject sourceTable, SchemaObject newTable) Check that all views and other dependent objects.Method parameters in org.h2.command.ddl with type arguments of type SchemaObjectModifier and TypeMethodDescriptionprivate static void
DropDatabase.addAll
(Collection<Schema> schemas, int type, ArrayList<SchemaObject> list) -
Uses of SchemaObject in org.h2.constraint
Subclasses of SchemaObject 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 SchemaObject in org.h2.engine
Methods in org.h2.engine with parameters of type SchemaObjectModifier and TypeMethodDescriptionvoid
Database.addSchemaObject
(SessionLocal session, SchemaObject obj) Add a schema object to the database.Database.getDependentTable
(SchemaObject obj, Table except) Get the first table that depends on this object.void
Database.removeSchemaObject
(SessionLocal session, SchemaObject obj) Remove an object from the system table.void
Database.renameSchemaObject
(SessionLocal session, SchemaObject obj, String newName) Rename a schema object. -
Uses of SchemaObject in org.h2.index
Subclasses of SchemaObject 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 SchemaObject in org.h2.jdbc.meta
Methods in org.h2.jdbc.meta that return types with arguments of type SchemaObjectModifier and TypeMethodDescriptionprivate Collection
<? extends SchemaObject> DatabaseMetaLocal.getTablesForPattern
(Schema schema, String tablePattern) -
Uses of SchemaObject in org.h2.mode
Subclasses of SchemaObject in org.h2.modeModifier and TypeClassDescriptionfinal class
This class is responsible to build the pg_catalog tables. -
Uses of SchemaObject in org.h2.mvstore.db
Subclasses of SchemaObject 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 SchemaObject in org.h2.schema
Subclasses of SchemaObject 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
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 SchemaObjectModifier and TypeMethodDescriptionSchema.getAll
(ArrayList<SchemaObject> addTo) Get all objects.private Map
<String, SchemaObject> Schema.getMap
(int type) Methods in org.h2.schema with parameters of type SchemaObjectModifier and TypeMethodDescriptionvoid
Schema.add
(SchemaObject obj) Add an object to this schema.void
Schema.remove
(SchemaObject obj) Remove an object from this schema.void
Schema.rename
(SchemaObject obj, String newName) Rename an object.Method parameters in org.h2.schema with type arguments of type SchemaObjectModifier and TypeMethodDescriptionvoid
Schema.getAll
(int type, ArrayList<SchemaObject> addTo) Get all objects of the given type.Schema.getAll
(ArrayList<SchemaObject> addTo) Get all objects.private String
Schema.getUniqueName
(DbObject obj, Map<String, ? extends SchemaObject> map, String prefix) private void
Schema.removeChildrenFromMap
(SessionLocal session, ConcurrentHashMap<String, ? extends SchemaObject> map) -
Uses of SchemaObject in org.h2.table
Subclasses of SchemaObject 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 SchemaObjectModifier and TypeMethodDescriptionprivate ArrayList
<SchemaObject> InformationSchemaTableLegacy.getAllSchemaObjects
(int type)