| Home >> All >> org >> apache >> derby >> iapi >> [ db Javadoc ] |
org.apache.derby.iapi.db: Javadoc index of package org.apache.derby.iapi.db.
Package Samples:
org.apache.derby.iapi.db
Classes:
OnlineCompress: Implementation of SYSCS_UTIL.SYSCS_INPLACE_COMPRESS_TABLE(). Code which implements the following system procedure: void SYSCS_UTIL.SYSCS_INPLACE_COMPRESS_TABLE( IN SCHEMANAME VARCHAR(128), IN TABLENAME VARCHAR(128), IN PURGE_ROWS SMALLINT, IN DEFRAGMENT_ROWS SMALLINT, IN TRUNCATE_END SMALLINT) This system procedure can be used to force 3 levels of in place compression of a SQL table. The table is specified using the SCHEMANAME and TABLENAME arguments. If PURGE_ROWS is set to non-zero then a single pass is made through the table which will purge committed deleted rows from the table. This space ...
Factory: Callers of these methods must be within the context of a Cloudscape statement execution otherwise a SQLException will be thrown. There are two basic ways to call these methods. Within a SQL statement. -- checkpoint the database CALL org.apache.derby.iapi.db.Factory:: getDatabaseOfConnection().checkpoint(); In a server-side JDBC method. import org.apache.derby.iapi.db.*; ... // checkpoint the database Database db = Factory.getDatabaseOfConnection(); db.checkpoint(); This class can only be used within an SQL-J statement, a Java procedure or a server side Java method. This class can be accessed using ...
Database: The org.apache.derby.iapi.db.Database interface provides "internal" methods on the database which are not available to JBMS users (org.apache.derby.database.Database, which this interface extends, provides all the externally visible methods). At the present moment, this file defines methods which will at some point be moved to to the external database interface. There are a bunch of the unimplemninted interface that used to be in this file. They have been moved to old_Database.java. old_Database.java is checked into the codeline but is not built, it is there for reference
PropertyInfo: PropertyInfo is a class with static methods that retrieve the properties associated with a table or index and set and retrieve properties associated with a database. This class can only be used within an SQL-J statement, a Java procedure or a server side Java method. This class can be accessed using the class alias PROPERTYINFO in SQL-J statements. IBM Corp. reserves the right to change, rename, or remove this interface at any time.
ConsistencyChecker: The ConsistencyChecker class provides static methods for verifying the consistency of the data stored within a database. This class can only be used within an SQL-J statement, a Java procedure or a server side Java method. This class can be accessed using the class alias CONSISTENCYCHECKER in SQL-J statements. IBM Corp. reserves the right to change, rename, or remove this class or any of the the methods on the class at any time.
ConnectionInfo: ConnectionInfo class provides static methods for getting information related to a JDBC connection. When called from within the query language, each method returns information about the connection from which it was called. Use the methods of this class only within an SQL-J statement; do not call them directly. IBM Corp. reserves the right to change, rename or remove this class or any of the methods in the class at any time.
OptimizerTrace: This class provides static methods for controlling the optimizer tracing in a Cloudscape database. Cloudscape reserves the right to change, rename, or remove this interface at any time.
TriggerExecutionContext: A trigger execution context holds information that is available from the context of a trigger invocation. IBM Corp. reserves the right to change, rename, or remove this interface at any time.
DatabaseContext: A context for a database.
| Home | Contact Us | Privacy Policy | Terms of Service |