Uses of Class
com.mckoi.database.DataTableDef
-
Packages that use DataTableDef Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of DataTableDef in com.mckoi.database
Fields in com.mckoi.database declared as DataTableDef Modifier and Type Field Description protected DataTableDefMasterTableDataSource. table_defA DataTableDef object that describes the table topology.protected DataTableDefMasterTableDataSource. table_defA DataTableDef object that describes the table topology.Methods in com.mckoi.database that return DataTableDef Modifier and Type Method Description DataTableDefCompositeTable. getDataTableDef()DataTableDefDatabaseConnection. getDataTableDef(TableName name)Returns the DataTableDef for the table with the given name.DataTableDefDatabaseQueryContext. getDataTableDef(TableName name)Returns a DataTableDef for the given table name.DataTableDefDataTable. getDataTableDef()Returns the DataTableDef object for this table.DataTableDefDataTableFilter. getDataTableDef()Returns a DataTableDef object that defines the name of the table and the layout of the columns of the table.DataTableDefFilterTable. getDataTableDef()Returns a DataTableDef object that defines the name of the table and the layout of the columns of the table.DataTableDefFunctionTable. getDataTableDef()Returns the DataTableDef object that represents the columns in this function table.DataTableDefGTPrivMapDataSource. getDataTableDef()DataTableDefGTSQLTypeInfoDataSource. getDataTableDef()DataTableDefJoinedTable. getDataTableDef()Returns the DataTableDef object that describes the columns in this table.DataTableDefRawDiagnosticTable. getDataTableDef()Returns the DataTableDef object that describes the logical topology of the columns in this table.DataTableDefReferenceTable. getDataTableDef()Returns the 'modified' DataTableDef object for this reference.DataTableDefSimpleTransaction. getDataTableDef(TableName table_name)Returns the DataTableDef for the table with the given name that is visible within this transaction.DataTableDefSubsetColumnTable. getDataTableDef()Returns the DataTableDef object that describes the columns and name of this table.abstract DataTableDefTable. getDataTableDef()Returns a DataTableDef object that defines the name of the table and the layout of the columns of the table.DataTableDefTableAccessState. getDataTableDef()Returns the DataTableDef object that contains information on the columns of the table.DataTableDefTableDataSource. getDataTableDef()Returns a DataTableDef object that defines the layout of the table that this data is in.DataTableDefTableQueryDef. getDataTableDef()Returns an immutable DataTableDef object that describes the columns in this table source, and the name of the table.DataTableDefTemporaryTable. getDataTableDef()DataTableDefViewDef. getDataTableDef()Returns the DataTableDef for this view.DataTableDefTableDescriptions. getDef(java.lang.String table_name)Returns the DataTableDef object for the table with the given name.protected DataTableDefSimpleTransaction. getDynamicDataTableDef(TableName table_name)Returns the DataTableDef for a dynamic table defined in this transaction.protected DataTableDefTransaction. getDynamicDataTableDef(TableName table_name)Returns the DataTableDef for the given internal table.DataTableDefDataTableDef. noColumnCopy()Returns a copy of this object, except with no columns or constraints.Methods in com.mckoi.database with parameters of type DataTableDef Modifier and Type Method Description voidDatabaseConnection. alterCreateTable(DataTableDef table_def)Given a DataTableDef, if the table exists then it is updated otherwise if it doesn't exist then it is created.voidDatabaseConnection. alterCreateTable(DataTableDef table_def, int data_sector_size, int index_sector_size)Given a DataTableDef, if the table exists then it is updated otherwise if it doesn't exist then it is created.voidTransaction. alterCreateTable(DataTableDef table_def, int data_sector_size, int index_sector_size)Given a DataTableDef, if the table exists then it is updated otherwise if it doesn't exist then it is created.voidTransaction. alterTable(TableName table_name, DataTableDef table_def)Alters the table with the given name within this transaction to the specified table definition.voidTransaction. alterTable(TableName table_name, DataTableDef table_def, int data_sector_size, int index_sector_size)Alter the table with the given name to the new definition and give the copied table a new data sector size.voidDatabaseConnection. createTable(DataTableDef table_def)Create a new table within the context of the current connection transaction.voidDatabaseConnection. createTable(DataTableDef table_def, int data_sector_size, int index_sector_size)Create a new table with a starting initial sector size.voidTransaction. createTable(DataTableDef table_def)Creates a new table within this transaction.voidTransaction. createTable(DataTableDef table_def, int data_sector_size, int index_sector_size)Creates a new table within this transaction with the given sector size.Transaction.CheckExpressionDatabaseSystem. prepareTransactionCheckConstraint(DataTableDef table_def, Transaction.CheckExpression check)Given a Transaction.CheckExpression, this will prepare the expression and return a new prepared CheckExpression.Transaction.CheckExpressionTransactionSystem. prepareTransactionCheckConstraint(DataTableDef table_def, Transaction.CheckExpression check)Given a Transaction.CheckExpression, this will prepare the expression and return a new prepared CheckExpression.voidDatabaseConnection. updateTable(DataTableDef table_def)Updates a given table within the context of the current connection transaction.voidDatabaseConnection. updateTable(DataTableDef table_def, int data_sector_size, int index_sector_size)Updates a given table within the context of the current connection transaction.Constructors in com.mckoi.database with parameters of type DataTableDef Constructor Description DataTableDef(DataTableDef table_def)Copy constructor.ViewDef(DataTableDef view_def, QueryPlanNode query_node)Constructs the ViewDef object.
-