Package | Description |
---|---|
com.mckoi.database |
The core database classes for Mckoi.
|
com.mckoi.database.interpret | |
com.mckoi.database.jdbc |
The JDBC interface to Mckoi.
|
com.mckoi.database.jdbcserver |
Implementation of the DatabaseInterface interface,
including classes to handle local (embedded) mode
and remote (client/server) mode.
|
Modifier and Type | Method and Description |
---|---|
void |
DatabaseConnection.createView(SQLQuery query,
ViewDef view)
Creates a new view.
|
void |
ViewManager.defineView(ViewDef view,
SQLQuery query,
User user)
Defines a view.
|
Modifier and Type | Field and Description |
---|---|
protected SQLQuery |
Statement.query
The SQLQuery object that was used to produce this statement.
|
Modifier and Type | Method and Description |
---|---|
Table |
SQLQueryExecutor.execute(DatabaseConnection connection,
SQLQuery query)
Executes the given SQLQuery object on the given DatabaseConnection object.
|
void |
Statement.init(DatabaseConnection db,
StatementTree stree,
SQLQuery query)
Sets up internal variables for this statement for derived classes to use.
|
Modifier and Type | Method and Description |
---|---|
SQLQuery |
SQLQuery.copy()
Creates an exact copy of this object.
|
static SQLQuery |
SQLQuery.deserializeFromBlob(ByteLongObject ob)
Deserializes an SQLQuery object from a ByteLongObject.
|
static SQLQuery |
SQLQuery.readFrom(DataInputStream in)
Reads an SQLQuery object from the data input stream.
|
Modifier and Type | Method and Description |
---|---|
QueryResponse |
DatabaseInterface.execQuery(SQLQuery sql)
Executes the query and returns a QueryResponse object that describes the
result of the query.
|
Modifier and Type | Method and Description |
---|---|
QueryResponse |
AbstractJDBCDatabaseInterface.execQuery(SQLQuery query) |
QueryResponse |
JDBCDatabaseInterface.execQuery(SQLQuery query) |
protected SQLException |
AbstractJDBCDatabaseInterface.handleExecuteThrowable(Throwable e,
SQLQuery query)
Wraps a Throwable thrown by the execution of a query in DatabaseConnection
with an SQLException and puts the appropriate error messages to the debug
log.
|
Copyright © 2015. All rights reserved.