Uses of Class
org.h2.table.Table
-
Packages that use Table Package Description org.h2.api Contains interfaces for user-defined extensions, such as triggers and user-defined aggregate functions.org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.ddl Contains DDL (data definition language) and related SQL statements.org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.command.query Contains queries.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.expression Expressions include mathematical operations, simple values, and others.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.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.table Classes related to a table and table meta data. -
-
Uses of Table in org.h2.api
Methods in org.h2.api that return Table Modifier and Type Method Description TableTableEngine. createTable(CreateTableData data)Create new table. -
Uses of Table in org.h2.command
Methods in org.h2.command that return Table Modifier and Type Method Description TableParser. parseTableName(java.lang.String sql)Parse a SQL code snippet that represents a table name.private TableParser. readDataChangeDeltaTable(java.lang.String resultOptionName, int backupIndex)private TableParser. readTableOrView()private TableParser. readTableOrView(java.lang.String tableName)private TableParser. tableIfTableExists(Schema schema, java.lang.String tableName, boolean ifTableExists)Methods in org.h2.command with parameters of type Table Modifier and Type Method Description private TableFilterParser. buildTableFilter(Table table, java.lang.String alias, java.util.ArrayList<java.lang.String> derivedColumnNames, IndexHints indexHints)private ColumnParser. parseColumn(Table table)private Column[]Parser. parseColumnList(Table table)private IndexHintsParser. parseIndexHints(Table table)private voidParser. parseInsertCompatibility(Insert command, Table table, Mode mode)private voidParser. parseInsertSet(Insert command, Table table, Column[] columns)private ExpressionParser. readOnDuplicateKeyValues(Table table, Update update) -
Uses of Table in org.h2.command.ddl
Fields in org.h2.command.ddl declared as Table Modifier and Type Field Description private TableAnalyze. tableused in ANALYZE TABLE...private TableTruncateTable. tableFields in org.h2.command.ddl with type parameters of type Table Modifier and Type Field Description private java.util.ArrayList<Table>GrantRevoke. tablesMethods in org.h2.command.ddl that return Table Modifier and Type Method Description private TableAlterTableAlterColumn. cloneTableStructure(Table table, Column[] columns, Database db, java.lang.String tempName, java.util.ArrayList<Column> newColumns)Methods in org.h2.command.ddl with parameters of type Table Modifier and Type Method Description private voidAlterTableAddConstraint. addConstraintToTable(Database db, Table table, Constraint constraint)voidGrantRevoke. addTable(Table table)Add the specified table to the list of tables.static voidAnalyze. analyzeTable(SessionLocal session, Table table, int sample, boolean manual)Analyze this table.private static booleanAlterTableAddConstraint. canUseIndex(Index index, Table table, IndexColumn[] cols, boolean unique)private static voidAlterTableAlterColumn. checkDefaultReferencesTable(Table table, Expression defaultExpression)private voidAlterTableAlterColumn. checkNoNullValues(Table table)private voidAlterTableAlterColumn. checkNullable(Table table)private TableAlterTableAlterColumn. cloneTableStructure(Table table, Column[] columns, Database db, java.lang.String tempName, java.util.ArrayList<Column> newColumns)private voidAlterTableAlterColumn. convertIdentityColumn(Table table, Column c)private voidAlterTableAlterColumn. copyData(Table table, java.util.ArrayList<Sequence> sequences, boolean createConstraints)private IndexAlterTableAddConstraint. createIndex(Table t, IndexColumn[] cols, boolean unique)private ConstraintUniqueAlterTableAddConstraint. createUniqueConstraint(Table table, Index index, IndexColumn[] indexColumns, boolean forForeignKey)private static booleanAlterDomain. forTable(SessionLocal session, Domain domain, java.util.function.BiPredicate<Domain,Column> columnProcessor, boolean recompileExpressions, Table t)private java.lang.StringAlterTableAddConstraint. generateConstraintName(Table table)private static IndexAlterTableAddConstraint. getIndex(Table t, IndexColumn[] cols, boolean unique)private static ConstraintUniqueAlterTableAddConstraint. getUniqueConstraint(Table t, IndexColumn[] cols)private voidAlterTableAlterColumn. removeSequence(Table table, Sequence sequence)voidAnalyze. setTable(Table table)voidTruncateTable. setTable(Table table)private intAlterTableAddConstraint. tryUpdate(Table table)Try to execute the statement.(package private) abstract longAlterTable. update(Table table)longAlterTableAddConstraint. update(Table table)longAlterTableDropConstraint. update(Table table)longAlterTableRename. update(Table table)longAlterTableRenameColumn. update(Table table)longAlterTableRenameConstraint. update(Table table) -
Uses of Table in org.h2.command.dml
Fields in org.h2.command.dml declared as Table Modifier and Type Field Description private TableInsert. tableprivate TableMerge. tableprivate TableSetClauseList. tableFields in org.h2.command.dml with type parameters of type Table Modifier and Type Field Description private java.util.Collection<Table>ScriptCommand. tablesMethods in org.h2.command.dml that return Table Modifier and Type Method Description abstract TableDataChangeStatement. getTable()Return the target table.TableFilteredDataChangeStatement. getTable()TableInsert. getTable()TableMerge. getTable()TableMergeUsing. getTable()Methods in org.h2.command.dml with parameters of type Table Modifier and Type Method Description (package private) static voidUpdate. doUpdate(Prepared prepared, SessionLocal session, Table table, LocalResult rows)private booleanScriptCommand. excludeTable(Table table)private intScriptCommand. generateInsertValues(int count, Table table)(package private) booleanSetClauseList. prepareUpdate(Table table, SessionLocal session, ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode, LocalResult rows, Row oldRow, boolean updateToCurrentValuesReturnsZero)voidInsert. setTable(Table table)voidMerge. setTable(Table table)Method parameters in org.h2.command.dml with type arguments of type Table Modifier and Type Method Description voidScriptCommand. setTables(java.util.Collection<Table> tables)Constructors in org.h2.command.dml with parameters of type Table Constructor Description SetClauseList(Table table) -
Uses of Table in org.h2.command.query
Fields in org.h2.command.query with type parameters of type Table Modifier and Type Field Description private java.util.HashMap<Table,java.util.ArrayList<Column>>AllColumnsForPlan. mapMethods in org.h2.command.query that return Table Modifier and Type Method Description TableQuery. toTable(java.lang.String alias, Column[] columnTemplates, java.util.ArrayList<Parameter> parameters, boolean forCreateView, Query topQuery)Converts this query to a table or a view.TableTableValueConstructor. toTable(java.lang.String alias, Column[] columnTemplates, java.util.ArrayList<Parameter> parameters, boolean forCreateView, Query topQuery)Methods in org.h2.command.query that return types with arguments of type Table Modifier and Type Method Description abstract java.util.HashSet<Table>Query. getTables()Get all tables that are involved in this query.java.util.HashSet<Table>Select. getTables()java.util.HashSet<Table>SelectUnion. getTables()java.util.HashSet<Table>TableValueConstructor. getTables()Methods in org.h2.command.query with parameters of type Table Modifier and Type Method Description java.util.ArrayList<Column>AllColumnsForPlan. get(Table table)Used by index to calculate the cost of a scan. -
Uses of Table in org.h2.constraint
Fields in org.h2.constraint declared as Table Modifier and Type Field Description private TableConstraintReferential. refTableprotected TableConstraint. tableThe table for which this constraint is defined.Methods in org.h2.constraint that return Table Modifier and Type Method Description TableConstraint. getRefTable()TableConstraintReferential. getRefTable()TableConstraint. getTable()Methods in org.h2.constraint with parameters of type Table Modifier and Type Method Description abstract voidConstraint. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)Check if this row fulfils the constraint.voidConstraintCheck. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)voidConstraintDomain. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)voidConstraintReferential. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)voidConstraintUnique. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)java.lang.StringConstraintCheck. getCreateSQLForCopy(Table forTable, java.lang.String quotedName)java.lang.StringConstraintDomain. getCreateSQLForCopy(Table forTable, java.lang.String quotedName)java.lang.StringConstraintReferential. getCreateSQLForCopy(Table forTable, java.lang.String quotedName)Create the SQL statement of this object so a copy of the table can be made.java.lang.StringConstraintReferential. getCreateSQLForCopy(Table forTable, Table forRefTable, java.lang.String quotedName, boolean internalIndex)Create the SQL statement of this object so a copy of the table can be made.java.lang.StringConstraintUnique. getCreateSQLForCopy(Table forTable, java.lang.String quotedName)private java.lang.StringConstraintUnique. getCreateSQLForCopy(Table forTable, java.lang.String quotedName, boolean internalIndex)abstract java.util.HashSet<Column>Constraint. getReferencedColumns(Table table)Get all referenced columns.java.util.HashSet<Column>ConstraintCheck. getReferencedColumns(Table table)java.util.HashSet<Column>ConstraintDomain. getReferencedColumns(Table table)java.util.HashSet<Column>ConstraintReferential. getReferencedColumns(Table table)java.util.HashSet<Column>ConstraintUnique. getReferencedColumns(Table table)voidConstraintReferential. setRefTable(Table refTable)Constructors in org.h2.constraint with parameters of type Table Constructor Description Constraint(Schema schema, int id, java.lang.String name, Table table)ConstraintCheck(Schema schema, int id, java.lang.String name, Table table)ConstraintReferential(Schema schema, int id, java.lang.String name, Table table)ConstraintUnique(Schema schema, int id, java.lang.String name, Table table, boolean primaryKey) -
Uses of Table in org.h2.engine
Fields in org.h2.engine declared as Table Modifier and Type Field Description private TableDatabase. metaprivate TableSessionLocal. waitForLockFields in org.h2.engine with type parameters of type Table Modifier and Type Field Description private java.util.HashMap<java.lang.String,Table>SessionLocal. localTempTablesprivate java.util.ArrayList<Table>SessionLocal. locksprivate java.util.HashSet<Table>SessionLocal. tablesToAnalyzeTables marked for ANALYZE after the current transaction is committed.Methods in org.h2.engine that return Table Modifier and Type Method Description TableSessionLocal. findLocalTempTable(java.lang.String name)Get the local temporary table if one exists with that name, or null if not.TableDatabase. getDependentTable(SchemaObject obj, Table except)Get the first table that depends on this object.TableDatabase. getFirstUserTable()Get the first user defined table, excluding the LOB_BLOCKS table that the Recover tool creates.TableSessionLocal. getWaitForLock()Methods in org.h2.engine that return types with arguments of type Table Modifier and Type Method Description java.util.ArrayList<Table>Database. getAllTablesAndViews()Get all tables and views.java.util.List<Table>SessionLocal. getLocalTempTables()java.util.Set<Table>SessionLocal. getLocks()Methods in org.h2.engine with parameters of type Table Modifier and Type Method Description voidSessionLocal. addLocalTempTable(Table table)Add a local temporary table to this session.voidUser. checkTableRight(Table table, int rightMask)Checks that this user has the given rights for the specified table.java.lang.StringComment. getCreateSQLForCopy(Table table, java.lang.String quotedName)abstract java.lang.StringDbObject. getCreateSQLForCopy(Table table, java.lang.String quotedName)Build a SQL statement to re-create the object, or to create a copy of the object with a different name or referencing a different tablejava.lang.StringRight. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringRole. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringSetting. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringUser. getCreateSQLForCopy(Table table, java.lang.String quotedName)TableDatabase. getDependentTable(SchemaObject obj, Table except)Get the first table that depends on this object.booleanUser. hasTableRight(Table table, int rightMask)See if this user has the given rights for this database object.(package private) booleanRightOwner. isTableRightGrantedRecursive(Table table, int rightMask)Checks if a right is already granted to this object or to objects that were granted to this object.voidSessionLocal. markTableForAnalyze(Table table)Mark that the given table needs to be analyzed on commit.voidSessionLocal. registerTableAsLocked(Table table)Register table as locked within current transaction.voidSessionLocal. registerTableAsUpdated(Table table)Register table as updated within current transaction.voidSessionLocal. removeLocalTempTable(Table table)Drop and remove the given local temporary table from this session.voidSessionLocal. setWaitForLock(Table waitForLock, java.lang.Thread waitForLockThread)Set the table this session is waiting for, and the thread that is waiting.(package private) voidSessionLocal. unlock(Table t)Unlock just this table. -
Uses of Table in org.h2.expression
Fields in org.h2.expression declared as Table Modifier and Type Field Description private TableExpressionVisitor. tableMethods in org.h2.expression that return Table Modifier and Type Method Description TableExpressionVisitor. getTable()Get the table.Methods in org.h2.expression with parameters of type Table Modifier and Type Method Description static ExpressionVisitorExpressionVisitor. getColumnsVisitor(java.util.HashSet<Column> columns, Table table)Create a new visitor to get all referenced columns.static ExpressionVisitorExpressionVisitor. getOptimizableVisitor(Table table)Create a new visitor to check if all aggregates are for the given table.Constructors in org.h2.expression with parameters of type Table Constructor Description ExpressionVisitor(int type, int queryLevel, java.util.HashSet<?> set, AllColumnsForPlan columns1, Table table, ColumnResolver resolver, long[] maxDataModificationId) -
Uses of Table in org.h2.index
Fields in org.h2.index declared as Table Modifier and Type Field Description protected TableIndex. tableThe table.private TableIndexCursor. tableprivate TableViewCursor. tableMethods in org.h2.index that return Table Modifier and Type Method Description TableIndex. getTable()Get the table on which this index is based.Methods in org.h2.index with parameters of type Table Modifier and Type Method Description java.lang.StringIndex. getCreateSQLForCopy(Table targetTable, java.lang.String quotedName)Constructors in org.h2.index with parameters of type Table Constructor Description Index(Table newTable, int id, java.lang.String name, IndexColumn[] newIndexColumns, int uniqueColumnCount, IndexType newIndexType)Initialize the index. -
Uses of Table in org.h2.jdbc.meta
Methods in org.h2.jdbc.meta with parameters of type Table Modifier and Type Method Description private voidDatabaseMetaLocal. addCrossReferenceResult(SimpleResult result, Value catalog, java.lang.String pkSchema, Table pkTable, java.lang.String fkSchema, Table fkTable, ConstraintReferential fk)private voidDatabaseMetaLocal. getColumnsAdd(SimpleResult result, Value catalogValue, Value schemaValue, Value tableName, Table t, CompareLike columnLike)private voidDatabaseMetaLocal. getIndexInfo(Value catalogValue, Value schemaValue, Table table, boolean unique, boolean approximate, SimpleResult result, Database db)private voidDatabaseMetaLocal. getPseudoColumnsAdd(SimpleResult result, Value catalogValue, Value schemaValue, Value tableName, Table t, CompareLike columnLike)private voidDatabaseMetaLocal. getTablesAdd(SimpleResult result, Value catalogValue, Value schemaValue, Value tableName, Table t, boolean synonym, java.util.HashSet<java.lang.String> typesSet) -
Uses of Table in org.h2.mode
Subclasses of Table in org.h2.mode Modifier and Type Class Description classPgCatalogTableThis class is responsible to build the pg_catalog tables.Fields in org.h2.mode with type parameters of type Table Modifier and Type Field Description private java.util.HashMap<java.lang.String,Table>PgCatalogSchema. tablesMethods in org.h2.mode that return types with arguments of type Table Modifier and Type Method Description private java.util.HashMap<java.lang.String,Table>PgCatalogSchema. fillMap()protected java.util.Map<java.lang.String,Table>PgCatalogSchema. getMap(SessionLocal session)Methods in org.h2.mode with parameters of type Table Modifier and Type Method Description private voidPgCatalogTable. addAttribute(SessionLocal session, java.util.ArrayList<Row> rows, int id, int relId, Table table, Column column, int ordinal)private voidPgCatalogTable. pgAttribute(SessionLocal session, java.util.ArrayList<Row> rows, Table table)private voidPgCatalogTable. pgClass(SessionLocal session, java.util.ArrayList<Row> rows, Table table) -
Uses of Table in org.h2.mvstore.db
Subclasses of Table in org.h2.mvstore.db Modifier and Type Class Description classMVTableA table stored in a MVStore.Constructors in org.h2.mvstore.db with parameters of type Table Constructor Description MVIndex(Table newTable, int id, java.lang.String name, IndexColumn[] newIndexColumns, int uniqueColumnCount, IndexType newIndexType) -
Uses of Table in org.h2.result
Methods in org.h2.result with parameters of type Table Modifier and Type Method Description static LocalResultLocalResult. forTable(SessionLocal session, Table table)Constructs a new local result object for the specified table. -
Uses of Table in org.h2.schema
Fields in org.h2.schema declared as Table Modifier and Type Field Description private TableTriggerObject. tableFields in org.h2.schema with type parameters of type Table Modifier and Type Field Description private java.util.HashMap<java.lang.String,Table>InformationSchema. newTablesprivate java.util.HashMap<java.lang.String,Table>InformationSchema. oldTablesprivate java.util.concurrent.ConcurrentHashMap<java.lang.String,Table>Schema. tablesAndViewsMethods in org.h2.schema that return Table Modifier and Type Method Description TableSchema. createTable(CreateTableData data)Add a table to the schema.TableMetaSchema. findTableOrView(SessionLocal session, java.lang.String name)TableSchema. findTableOrView(SessionLocal session, java.lang.String name)Try to find a table or view with this name.TableTriggerObject. getTable()Get the table of this trigger.TableMetaSchema. getTableOrView(SessionLocal session, java.lang.String name)TableSchema. getTableOrView(SessionLocal session, java.lang.String name)Get the table or view with the given name.TableMetaSchema. getTableOrViewByName(SessionLocal session, java.lang.String name)TableSchema. getTableOrViewByName(SessionLocal session, java.lang.String name)Get the table with the given name, if any.TableSchema. resolveTableOrView(SessionLocal session, java.lang.String name)Try to find a table or view with this name.Methods in org.h2.schema that return types with arguments of type Table Modifier and Type Method Description private java.util.HashMap<java.lang.String,Table>InformationSchema. fillMap(boolean old)java.util.Collection<Table>MetaSchema. getAllTablesAndViews(SessionLocal session)java.util.Collection<Table>Schema. getAllTablesAndViews(SessionLocal session)Get all tables and views.protected java.util.Map<java.lang.String,Table>InformationSchema. getMap(SessionLocal session)protected abstract java.util.Map<java.lang.String,Table>MetaSchema. getMap(SessionLocal session)Returns map of tables in this schema.Methods in org.h2.schema with parameters of type Table Modifier and Type Method Description private static JdbcResultSetTriggerObject. createResultSet(JdbcConnection conn, Table table, Row row, boolean updatable)booleanTriggerObject. fireRow(SessionLocal session, Table table, Row oldRow, Row newRow, boolean beforeAction, boolean rollback)Call the fire method of the user-defined trigger class if required.java.lang.StringConstant. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringDomain. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringSchema. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringSequence. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringTriggerObject. getCreateSQLForCopy(Table targetTable, java.lang.String quotedName)java.lang.StringUserDefinedFunction. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringSchema. getUniqueConstraintName(SessionLocal session, Table table)Create a unique constraint name.java.lang.StringSchema. getUniqueIndexName(SessionLocal session, Table table, java.lang.String prefix)Create a unique index name.Constructors in org.h2.schema with parameters of type Table Constructor Description TriggerObject(Schema schema, int id, java.lang.String name, Table table) -
Uses of Table in org.h2.table
Subclasses of Table 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.classTableBaseThe base class of a regular table, or a user defined table.classTableLinkA linked table contains connection information for a table accessible by JDBC.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.Fields in org.h2.table declared as Table Modifier and Type Field Description private TableTableSynonym. synonymForThe table the synonym is created for.private TableColumn. tableprivate TableGeneratedColumnResolver. tableprivate TableTableFilter. tableFields in org.h2.table with type parameters of type Table Modifier and Type Field Description private java.util.ArrayList<Table>TableView. tablesMethods in org.h2.table that return Table Modifier and Type Method Description static TableTableView. createShadowTableForRecursiveTableExpression(boolean isTemporary, SessionLocal targetSession, java.lang.String cteViewName, Schema schema, java.util.List<Column> columns, Database db)Create a table for a recursive query.TableTableSynonym. getSynonymFor()TableColumn. getTable()TableTableFilter. getTable()Methods in org.h2.table that return types with arguments of type Table Modifier and Type Method Description private java.util.ArrayList<Table>InformationSchemaTableLegacy. getAllTables(SessionLocal session)Get all tables of this database, including local temporary tables for the session.java.util.List<Table>TableView. getTables()private java.util.ArrayList<Table>InformationSchemaTableLegacy. getTablesByName(SessionLocal session, java.lang.String tableName)Methods in org.h2.table with parameters of type Table Modifier and Type Method Description private voidInformationSchemaTable. addPrivilege(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, java.lang.String right)private voidInformationSchemaTableLegacy. addPrivilege(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, java.lang.String right)private voidInformationSchemaTable. addPrivileges(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, int rightMask)private voidInformationSchemaTableLegacy. addPrivileges(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, int rightMask)static voidDataChangeDeltaTable. collectInsertedFinalRow(SessionLocal session, Table table, ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode, Row newRow)Collects final row for INSERT operations.private voidInformationSchemaTable. columns(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, Table table, java.lang.String tableName)private voidInformationSchemaTable. columns(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, Table table, java.lang.String tableName, Column c, int ordinalPosition)static voidTableView. destroyShadowTableForRecursiveExpression(boolean isTemporary, SessionLocal targetSession, Table recursiveTable)Remove a table for a recursive query.private voidInformationSchemaTable. elementTypesFieldsForTable(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, int type, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String schemaName, Table table)java.lang.StringTable. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringTableSynonym. getCreateSQLForCopy(Table table, java.lang.String quotedName)java.lang.StringTableView. getCreateSQLForCopy(Table table, java.lang.String quotedName)protected booleanMetaTable. hideTable(Table table, SessionLocal session)Check whether to hide the table.private voidInformationSchemaTable. indexColumns(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName, Index index)private voidInformationSchemaTable. indexes(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, boolean columns, Table table, java.lang.String tableName)private voidInformationSchemaTable. indexes(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName, Index index)private voidInformationSchemaTable. keyColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, IndexColumn[] indexColumns, Table table, java.lang.String tableName)static voidIndexColumn. mapColumns(IndexColumn[] indexColumns, Table table)Map the columns using the column names and the specified table.voidColumn. setTable(Table table, int columnId)Set the table and column id.private voidInformationSchemaTable. tableConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, Table table, java.lang.String tableName)private voidInformationSchemaTable. tables(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName)private voidInformationSchemaTable. triggers(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, TriggerObject trigger, java.lang.String eventManipulation, Table table, java.lang.String tableName)private voidInformationSchemaTable. views(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName)Constructors in org.h2.table with parameters of type Table Constructor Description Column(java.lang.String name, TypeInfo type, Table table, int columnId)GeneratedColumnResolver(Table table)Column resolver for generated columns.TableFilter(SessionLocal session, Table table, java.lang.String alias, boolean rightsChecked, Select select, int orderInFrom, IndexHints indexHints)Create a new table filter object.
-