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.DataTableDatabaseConnection. getTable(TableName name)Returns a DataTable that represents the table from the given schema, name in the database.DataTableDatabaseConnection. 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.DataTableDatabaseQueryContext. 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 voidLockHandle. checkAccess(DataTable table, int access_type)Blocks until access to the given DataTable object is safe.LockHandleLockingMechanism. lockTables(DataTable[] t_write, DataTable[] t_read)This method locks the given tables for either reading or writing.
-