|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DriverSQLException | |
org.objectweb.cjdbc.driver | C-JDBC driver core. |
Uses of DriverSQLException in org.objectweb.cjdbc.driver |
Methods in org.objectweb.cjdbc.driver that return DriverSQLException | |
private DriverSQLException |
Connection.wrapIOExceptionInDriverSQLException(java.lang.String callerName,
java.io.IOException ioe)
|
Methods in org.objectweb.cjdbc.driver that throw DriverSQLException | |
private void |
Blob.checkInitialized()
|
private void |
Connection.throwSQLExceptionIfClosed(java.lang.String message)
|
private void |
Connection.throwSQLExceptionIfClosed()
|
void |
Connection.close()
Releases the connection. |
void |
Connection.commit()
Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by the Connection .
|
java.sql.Statement |
Connection.createStatement()
SQL statements without parameters are normally executed using Statement objects. |
boolean |
Connection.getAutoCommit()
Gets the current auto-commit state. |
java.sql.DatabaseMetaData |
Connection.getMetaData()
A connection's database is able to provide information describing its tables, its supported SQL grammar, its stored procedures, the capabilities of this connection, etc. |
java.lang.String |
Connection.getCatalog()
Return current catalog name. |
java.sql.ResultSet |
Connection.getCatalogs()
getCatalogs definition. |
protected java.sql.ResultSet |
Connection.getProcedures(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern)
|
protected java.sql.ResultSet |
Connection.getProcedureColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern,
java.lang.String columnNamePattern)
|
int |
Connection.getTransactionIsolation()
Gets this Connection's current transaction isolation mode. |
void |
Connection.rollback()
Drops all changes made since the previous commit/rollback and releases any database locks currently held by this connection. |
void |
Connection.setAutoCommit(boolean autoCommit)
If a connection is in auto-commit mode, then all its SQL statements will be executed and committed as individual transactions. |
void |
Connection.setReadOnly(boolean readOnly)
You can put a connection in read-only mode as a hint to enable database optimizations Note: setReadOnly cannot be called while in the middle of a transaction with write requests. |
void |
Connection.setTransactionIsolation(int level)
You can call this method to try to change the transaction isolation level using one of the TRANSACTION_* values. |
private void |
Connection.reconnect()
Try first to reconnect to the same controller and if we don't succeed then we notify the suspicion of failure if the current controller and we reconnect to a controller chosen using the policy specified in the JDBC URL of this connection. |
protected java.sql.ResultSet |
Connection.execReadRequest(SelectRequest request)
Performs a read request and return the reply. |
protected int |
Connection.execWriteRequest(AbstractWriteRequest request)
Performs a write request and return the number of rows affected. |
protected java.sql.ResultSet |
Connection.execWriteRequestWithKeys(AbstractWriteRequest request)
Performs a write request and returns the auto-generated keys |
java.sql.ResultSet |
Connection.execReadStoredProcedure(StoredProcedure proc)
Call a stored procedure that returns a ResultSet. |
protected int |
Connection.execWriteStoredProcedure(StoredProcedure proc)
Call a stored procedure that performs an update. |
protected java.sql.ResultSet |
Connection.getAttributes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
java.lang.String attributeNamePattern)
|
protected java.sql.ResultSet |
Connection.getBestRowIdentifier(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
int scope,
boolean nullable)
|
protected java.sql.ResultSet |
Connection.getColumnPrivileges(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableName,
java.lang.String columnNamePattern)
|
protected java.sql.ResultSet |
Connection.getColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
|
protected java.sql.ResultSet |
Connection.getCrossReference(java.lang.String primaryCatalog,
java.lang.String primarySchema,
java.lang.String primaryTable,
java.lang.String foreignCatalog,
java.lang.String foreignSchema,
java.lang.String foreignTable)
|
java.sql.ResultSet |
Connection.getExportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
|
protected java.sql.ResultSet |
Connection.getImportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
|
protected java.sql.ResultSet |
Connection.getIndexInfo(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
boolean unique,
boolean approximate)
|
protected java.sql.ResultSet |
Connection.getPrimaryKeys(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
|
protected java.sql.ResultSet |
Connection.getSuperTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
|
protected java.sql.ResultSet |
Connection.getSuperTypes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern)
|
protected java.sql.ResultSet |
Connection.getTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String[] types)
|
protected java.sql.ResultSet |
Connection.getTypeInfo()
|
protected java.sql.ResultSet |
Connection.getUDTs(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
int[] types)
|
java.sql.ResultSet |
Connection.getVersionColumns(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
|
(package private) java.lang.Object |
Connection.getStaticMetadata(java.lang.String key)
Retrieve a static metadata from the controller. |
java.lang.String |
Connection.getControllerVersionNumber()
Get the C-JDBC controller version number. |
java.sql.Savepoint |
Connection.setSavepoint()
Creates an unnamed savepoint in the current transaction and returns the new Savepoint object that represents it. |
java.sql.Savepoint |
Connection.setSavepoint(java.lang.String name)
Creates a savepoint with the given name in the current transaction and returns the new Savepoint object that represents it. |
void |
Connection.rollback(java.sql.Savepoint savepoint)
Undoes all changes made after the given Savepoint object was
set.
|
void |
Connection.releaseSavepoint(java.sql.Savepoint savepoint)
Removes the given Savepoint object from the current
transaction. |
java.sql.ResultSet |
Connection.getTablePrivileges(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Gets a description of the access rights for each table available in a catalog. |
java.sql.ResultSet |
Connection.getSchemas()
|
java.lang.String |
Connection.getDatabaseProductName()
|
void |
Connection.fetchNextData(java.lang.String cursorName,
int fetchSize,
DriverResultSet drsToUpdate)
Fetch next fetchSize rows of data and update the given ResultSet. |
protected java.sql.Connection |
Driver.connectToController(java.util.Properties properties,
CjdbcUrl cjdbcUrl,
ControllerInfo controller)
Connect to the given controller with the specified parameters. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |