Uses of Class
com.mckoi.database.DataTable
-
Packages that use DataTable Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of DataTable in com.mckoi.database
Methods in com.mckoi.database that return DataTable Modifier and Type Method Description DataTable[]
DatabaseProcedure. getReadTables(DatabaseConnection db)
This returns a DataTable[] array that lists the DataTables that are read during this procedure.DataTable
DatabaseConnection. getTable(TableName name)
Returns a DataTable that represents the table from the given schema, name in the database.DataTable
DatabaseConnection. getTable(java.lang.String table_name)
Returns a DataTable that represents the table with the given name in the database from the current connection schema.DataTable
DatabaseQueryContext. getTable(TableName name)
Returns a DataTable from the database with the given table name.DataTable[]
DatabaseProcedure. getWriteTables(DatabaseConnection db)
Returns a DataTable[] array that lists the DataTables that are written to during this procedure.Methods in com.mckoi.database with parameters of type DataTable Modifier and Type Method Description void
LockHandle. checkAccess(DataTable table, int access_type)
Blocks until access to the given DataTable object is safe.LockHandle
LockingMechanism. lockTables(DataTable[] t_write, DataTable[] t_read)
This method locks the given tables for either reading or writing.
-