2005/5/9
-- ACDK API Docs Namespaces acdk acdk::sql Connection members Java (java.sun.com) See also: Connection.cpp Connection.h
(c) 2005 byRoger Rene Kommer
Kindly hosted at:
#include <Connection.h>
Inheritance diagram for acdk::sql::Connection:
[pure virtual]
JDKDOC: Clears all warnings reported for this Connection object.
API: JDK
Implemented in acdk::sql::odbc::ODBCConnection, and acdk::sql::sqlite::LiteConnection.
JDKDOC: Releases a Connection's database and JDBC resources immediately instead of waiting for them to be automatically released.
JDKDOC: Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by the Connection.
JDKDOC: JDBC 2.0 Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
JDKDOC: Creates a Statement object for sending SQL statements to the database.
JDKDOC: Gets the current auto-commit state.
JDKDOC: Returns the Connection's current catalog name.
JDKDOC: Gets the metadata regarding this connection's database.
JDKDOC: Gets this Connection's current transaction isolation level.
JDKDOC: JDBC 2.0 Gets the type map object associated with this connection.
JDKDOC: Returns the first warning reported by calls on this Connection.
JDKDOC: Tests to see if a Connection is closed.
JDKDOC: Tests to see if the connection is in read-only mode.
JDKDOC: Converts the given SQL statement into the system's native SQL grammar.
JDKDOC: Creates a CallableStatement object for calling database stored procedures.
JDKDOC: Creates a PreparedStatement object for sending parameterized SQL statements to the database.
JDKDOC: Drops all changes made since the previous commit/rollback and releases any database locks currently held by this Connection.
JDKDOC: Sets this connection's auto-commit mode.
JDKDOC: Sets a catalog name in order to select a subspace of this Connection's database in which to work.
JDKDOC: Puts this connection in read-only mode as a hint to enable database optimizations.
JDKDOC: Attempts to change the transaction isolation level to the one given.
JDKDOC: JDBC 2.0 Installs the given type map as the type map for this connection.
[static]
JDKDOC: Indicates that transactions are not supported.
JDKDOC: Dirty reads are prevented; non-repeatable reads and phantom reads can occur.
JDKDOC: Dirty reads, non-repeatable reads and phantom reads can occur.
JDKDOC: Dirty reads and non-repeatable reads are prevented; phantom reads can occur.
JDKDOC: Dirty reads, non-repeatable reads and phantom reads are prevented.