Package | Description |
---|---|
com.mckoi.database |
The core database classes for Mckoi.
|
Modifier and Type | Method and Description |
---|---|
DataTable[] |
DatabaseProcedure.getReadTables(DatabaseConnection db)
This returns a DataTable[] array that lists the DataTables that are read
during this procedure.
|
DataTable |
DatabaseConnection.getTable(String table_name)
Returns a DataTable that represents the table with the given name in the
database from the current connection schema.
|
DataTable |
DatabaseConnection.getTable(TableName name)
Returns a DataTable that represents the table from the given schema,
name in the database.
|
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.
|
Modifier and Type | Method and 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.
|
LockHandle |
LockingMechanism.lockTables(DataTable[] t_write,
DataTable[] t_read)
This method locks the given tables for either reading or writing.
|
Copyright © 2015. All rights reserved.