|
Public Member Functions |
virtual void | clearWarnings ()=0 |
| JDKDOC: Clears all warnings reported for this Connection object.
|
virtual void | close ()=0 |
| JDKDOC: Releases a Connection's database and JDBC resources immediately instead of waiting for them to be automatically released.
|
virtual void | commit ()=0 |
| JDKDOC: Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by the Connection.
|
virtual RStatement | createStatement ()=0 |
| JDKDOC: Creates a Statement object for sending SQL statements to the database.
|
virtual RStatement | createStatement (int resultSetType, int resultSetConcurrency)=0 |
| JDKDOC: JDBC 2.0 Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
|
virtual bool | getAutoCommit ()=0 |
| JDKDOC: Gets the current auto-commit state.
|
virtual RString | getCatalog ()=0 |
| JDKDOC: Returns the Connection's current catalog name.
|
virtual RDatabaseMetaData | getMetaData ()=0 |
| JDKDOC: Gets the metadata regarding this connection's database.
|
virtual int | getTransactionIsolation ()=0 |
| JDKDOC: Gets this Connection's current transaction isolation level.
|
virtual acdk::util::RMap | getTypeMap ()=0 |
| JDKDOC: JDBC 2.0 Gets the type map object associated with this connection.
|
virtual RSQLWarning | getWarnings ()=0 |
| JDKDOC: Returns the first warning reported by calls on this Connection.
|
virtual bool | isClosed ()=0 |
| JDKDOC: Tests to see if a Connection is closed.
|
virtual bool | isReadOnly ()=0 |
| JDKDOC: Tests to see if the connection is in read-only mode.
|
virtual RString | nativeSQL (INP(RString) sql)=0 |
| JDKDOC: Converts the given SQL statement into the system's native SQL grammar.
|
virtual RCallableStatement | prepareCall (INP(RString) sql)=0 |
| JDKDOC: Creates a CallableStatement object for calling database stored procedures.
|
virtual RPreparedStatement | prepareStatement (INP(RString) sql)=0 |
| JDKDOC: Creates a PreparedStatement object for sending parameterized SQL statements to the database.
|
virtual void | rollback ()=0 |
| JDKDOC: Drops all changes made since the previous commit/rollback and releases any database locks currently held by this Connection.
|
virtual void | setAutoCommit (bool autoCommit)=0 |
| JDKDOC: Sets this connection's auto-commit mode.
|
virtual void | setCatalog (INP(RString) catalog)=0 |
| JDKDOC: Sets a catalog name in order to select a subspace of this Connection's database in which to work.
|
virtual void | setReadOnly (bool readOnly)=0 |
| JDKDOC: Puts this connection in read-only mode as a hint to enable database optimizations.
|
virtual void | setTransactionIsolation (int level)=0 |
| JDKDOC: Attempts to change the transaction isolation level to the one given.
|
virtual void | setTypeMap (INP(acdk::util::RMap) map)=0 |
| JDKDOC: JDBC 2.0 Installs the given type map as the type map for this connection.
|
Static Public Attributes |
int | TRANSACTION_NONE |
| JDKDOC: Indicates that transactions are not supported.
|
int | TRANSACTION_READ_COMMITTED |
| JDKDOC: Dirty reads are prevented; non-repeatable reads and phantom reads can occur.
|
int | TRANSACTION_READ_UNCOMMITTED |
| JDKDOC: Dirty reads, non-repeatable reads and phantom reads can occur.
|
int | TRANSACTION_REPEATABLE_READ |
| JDKDOC: Dirty reads and non-repeatable reads are prevented; phantom reads can occur.
|
int | TRANSACTION_SERIALIZABLE |
| JDKDOC: Dirty reads, non-repeatable reads and phantom reads are prevented.
|