Uses of Class
org.h2.schema.SchemaObject
-
Packages that use SchemaObject Package Description org.h2.command.ddl Contains DDL (data definition language) and related SQL statements.org.h2.constraint Database constraints such as check constraints, unique constraints, and referential constraints.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.index Various table index implementations, as well as cursors to navigate in an index.org.h2.jdbc.meta Implementation of the JDBC database metadata API (package java.sql).org.h2.mode Utility classes for compatibility with other database, for example MySQL.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.table 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 SchemaObject Modifier and Type Method Description private voidAlterTableAlterColumn. 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 SchemaObject Modifier and Type Method Description private static voidDropDatabase. addAll(java.util.Collection<Schema> schemas, int type, java.util.ArrayList<SchemaObject> list) -
Uses of SchemaObject in org.h2.constraint
Subclasses of SchemaObject in org.h2.constraint Modifier and Type Class Description classConstraintThe base class for constraint checking.classConstraintCheckA check constraint.classConstraintDomainA domain constraint.classConstraintReferentialA referential constraint.classConstraintUniqueA unique constraint. -
Uses of SchemaObject in org.h2.engine
Methods in org.h2.engine with parameters of type SchemaObject Modifier and Type Method Description voidDatabase. addSchemaObject(SessionLocal session, SchemaObject obj)Add a schema object to the database.TableDatabase. getDependentTable(SchemaObject obj, Table except)Get the first table that depends on this object.voidDatabase. removeSchemaObject(SessionLocal session, SchemaObject obj)Remove an object from the system table.voidDatabase. renameSchemaObject(SessionLocal session, SchemaObject obj, java.lang.String newName)Rename a schema object. -
Uses of SchemaObject in org.h2.index
Subclasses of SchemaObject in org.h2.index Modifier and Type Class Description classDualIndexAn index for the DUAL table.classIndexAn index.classLinkedIndexA linked index is a index for a linked (remote) table.classMetaIndexThe index implementation for meta data tables.classRangeIndexAn index for the SYSTEM_RANGE table.classViewIndexThis object represents a virtual index for a query.classVirtualConstructedTableIndexAn index for a virtual table that returns a result set.classVirtualTableIndexAn 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 SchemaObject Modifier and Type Method Description private java.util.Collection<? extends SchemaObject>DatabaseMetaLocal. getTablesForPattern(Schema schema, java.lang.String tablePattern) -
Uses of SchemaObject in org.h2.mode
Subclasses of SchemaObject in org.h2.mode Modifier and Type Class Description classPgCatalogTableThis class is responsible to build the pg_catalog tables. -
Uses of SchemaObject in org.h2.mvstore.db
Subclasses of SchemaObject in org.h2.mvstore.db Modifier and Type Class Description classMVDelegateIndexAn index that delegates indexing to another index.classMVIndex<K,V>An index that stores the data in an MVStore.classMVPrimaryIndexA table stored in a MVStore.classMVSecondaryIndexAn index stored in a MVStore.classMVSpatialIndexThis is an index based on a MVRTreeMap.classMVTableA table stored in a MVStore. -
Uses of SchemaObject in org.h2.schema
Subclasses of SchemaObject in org.h2.schema Modifier and Type Class Description classConstantA user-defined constant as created by the SQL statement CREATE CONSTANTclassDomainRepresents a domain.classFunctionAliasRepresents a user-defined function, or alias.classSequenceA sequence is created using the statement CREATE SEQUENCEclassTriggerObjectA trigger is created using the statement CREATE TRIGGERclassUserAggregateRepresents a user-defined aggregate function.classUserDefinedFunctionUser-defined Java function or aggregate function.Methods in org.h2.schema that return types with arguments of type SchemaObject Modifier and Type Method Description java.util.ArrayList<SchemaObject>Schema. getAll(java.util.ArrayList<SchemaObject> addTo)Get all objects.private java.util.Map<java.lang.String,SchemaObject>Schema. getMap(int type)Methods in org.h2.schema with parameters of type SchemaObject Modifier and Type Method Description voidSchema. add(SchemaObject obj)Add an object to this schema.voidSchema. remove(SchemaObject obj)Remove an object from this schema.voidSchema. rename(SchemaObject obj, java.lang.String newName)Rename an object.Method parameters in org.h2.schema with type arguments of type SchemaObject Modifier and Type Method Description voidSchema. getAll(int type, java.util.ArrayList<SchemaObject> addTo)Get all objects of the given type.java.util.ArrayList<SchemaObject>Schema. getAll(java.util.ArrayList<SchemaObject> addTo)Get all objects.private java.lang.StringSchema. getUniqueName(DbObject obj, java.util.Map<java.lang.String,? extends SchemaObject> map, java.lang.String prefix)private voidSchema. removeChildrenFromMap(SessionLocal session, java.util.concurrent.ConcurrentHashMap<java.lang.String,? extends SchemaObject> map) -
Uses of SchemaObject in org.h2.table
Subclasses of SchemaObject in org.h2.table Modifier and Type Class Description classDataChangeDeltaTableA data change delta table.classDualTableThe DUAL table for selects without a FROM clause.classFunctionTableA table backed by a system or user-defined function that returns a result set.classInformationSchemaTableThis class is responsible to build the INFORMATION_SCHEMA tables.classInformationSchemaTableLegacyThis class is responsible to build the legacy variant of INFORMATION_SCHEMA tables.classMetaTableThis class is responsible to build the database meta data pseudo tables.classRangeTableThe table SYSTEM_RANGE is a virtual table that generates incrementing numbers with a given start end point.classTableThis is the base class for most tables.classTableBaseThe base class of a regular table, or a user defined table.classTableLinkA linked table contains connection information for a table accessible by JDBC.classTableSynonymSynonym for an existing table or view.classTableValueConstructorTableA table for table value constructor.classTableViewA view is a virtual table that is defined by a query.classVirtualConstructedTableA base class for virtual tables that construct all their content at once.classVirtualTableA base class for virtual tables.Methods in org.h2.table that return types with arguments of type SchemaObject Modifier and Type Method Description private java.util.ArrayList<SchemaObject>InformationSchemaTableLegacy. getAllSchemaObjects(int type)
-