org.eclipse.net4j.db
Interface IDBConnection

All Superinterfaces:
Connection, Wrapper

public interface IDBConnection
extends Connection

Since:
4.2
No Implement
This interface is not intended to be implemented by clients.
No Extend
This interface is not intended to be extended by clients.

Field Summary
 
Fields inherited from interface java.sql.Connection
TRANSACTION_NONE, TRANSACTION_READ_COMMITTED, TRANSACTION_READ_UNCOMMITTED, TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE
 
Method Summary
 IDBDatabase getDatabase()
           
 IDBSchemaTransaction openSchemaTransaction()
           
 IDBPreparedStatement prepareStatement(String sql, IDBPreparedStatement.ReuseProbability reuseProbability)
           
 PreparedStatement prepareStatement(String sql, int autoGeneratedKeys)
          Deprecated. Not supported.
 PreparedStatement prepareStatement(String sql, int[] columnIndexes)
          Deprecated. Not supported.
 IDBPreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, IDBPreparedStatement.ReuseProbability reuseProbability)
           
 PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          Deprecated. Not supported.
 PreparedStatement prepareStatement(String sql, String[] columnNames)
          Deprecated. Not supported.
 
Methods inherited from interface java.sql.Connection
clearWarnings, close, commit, createArrayOf, createBlob, createClob, createNClob, createSQLXML, createStatement, createStatement, createStatement, createStruct, getAutoCommit, getCatalog, getClientInfo, getClientInfo, getHoldability, getMetaData, getTransactionIsolation, getTypeMap, getWarnings, isClosed, isReadOnly, isValid, nativeSQL, prepareCall, prepareCall, prepareCall, prepareStatement, prepareStatement, releaseSavepoint, rollback, rollback, setAutoCommit, setCatalog, setClientInfo, setClientInfo, setHoldability, setReadOnly, setSavepoint, setSavepoint, setTransactionIsolation, setTypeMap
 
Methods inherited from interface java.sql.Wrapper
isWrapperFor, unwrap
 

Method Detail

getDatabase

IDBDatabase getDatabase()

openSchemaTransaction

IDBSchemaTransaction openSchemaTransaction()

prepareStatement

IDBPreparedStatement prepareStatement(String sql,
                                      IDBPreparedStatement.ReuseProbability reuseProbability)

prepareStatement

IDBPreparedStatement prepareStatement(String sql,
                                      int resultSetType,
                                      int resultSetConcurrency,
                                      IDBPreparedStatement.ReuseProbability reuseProbability)

prepareStatement

@Deprecated
PreparedStatement prepareStatement(String sql,
                                              int autoGeneratedKeys)
                                   throws SQLException
Deprecated. Not supported.

Specified by:
prepareStatement in interface Connection
Throws:
SQLException

prepareStatement

@Deprecated
PreparedStatement prepareStatement(String sql,
                                              int resultSetType,
                                              int resultSetConcurrency,
                                              int resultSetHoldability)
                                   throws SQLException
Deprecated. Not supported.

Specified by:
prepareStatement in interface Connection
Throws:
SQLException

prepareStatement

@Deprecated
PreparedStatement prepareStatement(String sql,
                                              int[] columnIndexes)
                                   throws SQLException
Deprecated. Not supported.

Specified by:
prepareStatement in interface Connection
Throws:
SQLException

prepareStatement

@Deprecated
PreparedStatement prepareStatement(String sql,
                                              String[] columnNames)
                                   throws SQLException
Deprecated. Not supported.

Specified by:
prepareStatement in interface Connection
Throws:
SQLException


Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.