com.rocketsoftware.mvapi
Class AbstractConnection

java.lang.Object
  extended by com.rocketsoftware.mvapi.AbstractConnection
All Implemented Interfaces:
java.sql.Connection
Direct Known Subclasses:
MVConnection

public abstract class AbstractConnection
extends java.lang.Object
implements java.sql.Connection

Provides default implementations for the Connection interface.


Field Summary
 
Fields inherited from interface java.sql.Connection
TRANSACTION_NONE, TRANSACTION_READ_COMMITTED, TRANSACTION_READ_UNCOMMITTED, TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE
 
Constructor Summary
AbstractConnection()
           
 
Method Summary
 void clearWarnings()
          [OUTSTANDING]
 void close()
           
 void commit()
          [OUTSTANDING]
 java.sql.Array createArrayOf(java.lang.String arg0, java.lang.Object[] arg1)
          [OUTSTANDING]
 java.sql.Blob createBlob()
          [OUTSTANDING]
 java.sql.Clob createClob()
          [OUTSTANDING]
 java.sql.Statement createStatement()
          Creates a Statement object for sending SQL statements to the database.
 java.sql.Statement createStatement(int resultSetType, int resultSetConcurrency)
          [OUTSTANDING]
 java.sql.Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          [OUTSTANDING]
 java.sql.Struct createStruct(java.lang.String arg0, java.lang.Object[] arg1)
          [OUTSTANDING]
 boolean getAutoCommit()
          [OUTSTANDING]
 java.lang.String getCatalog()
          [OUTSTANDING]
 java.util.Properties getClientInfo()
          [OUTSTANDING]
 java.lang.String getClientInfo(java.lang.String arg0)
          [OUTSTANDING]
 int getHoldability()
          [OUTSTANDING]
 java.sql.DatabaseMetaData getMetaData()
          [OUTSTANDING]
 int getTransactionIsolation()
          [OUTSTANDING]
 java.util.Map<java.lang.String,java.lang.Class<?>> getTypeMap()
          [OUTSTANDING]
 java.sql.SQLWarning getWarnings()
          [OUTSTANDING]
 boolean isClosed()
           
 boolean isReadOnly()
          [OUTSTANDING]
 boolean isValid(int arg0)
          [OUTSTANDING]
 boolean isWrapperFor(java.lang.Class<?> arg0)
          [OUTSTANDING]
 java.lang.String nativeSQL(java.lang.String sql)
          [OUTSTANDING]
 java.sql.CallableStatement prepareCall(java.lang.String sql)
          [OUTSTANDING]
 java.sql.CallableStatement prepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency)
          [OUTSTANDING]
 java.sql.CallableStatement prepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          [OUTSTANDING]
 java.sql.PreparedStatement prepareStatement(java.lang.String sql)
          [OUTSTANDING]
 java.sql.PreparedStatement prepareStatement(java.lang.String sql, int autoGeneratedKeys)
          [OUTSTANDING]
 java.sql.PreparedStatement prepareStatement(java.lang.String sql, int[] columnIndexes)
          [OUTSTANDING]
 java.sql.PreparedStatement prepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency)
          [OUTSTANDING]
 java.sql.PreparedStatement prepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          [OUTSTANDING]
 java.sql.PreparedStatement prepareStatement(java.lang.String sql, java.lang.String[] columnNames)
          [OUTSTANDING]
 void releaseSavepoint(java.sql.Savepoint savepoint)
          [OUTSTANDING]
 void rollback()
          [OUTSTANDING]
 void rollback(java.sql.Savepoint savepoint)
          [OUTSTANDING]
 void setAutoCommit(boolean autoCommit)
          [OUTSTANDING]
 void setCatalog(java.lang.String catalog)
          [OUTSTANDING]
 void setHoldability(int holdability)
          [OUTSTANDING]
 void setReadOnly(boolean readOnly)
          [OUTSTANDING]
 java.sql.Savepoint setSavepoint()
          [OUTSTANDING]
 java.sql.Savepoint setSavepoint(java.lang.String name)
          [OUTSTANDING]
 void setTransactionIsolation(int level)
          [OUTSTANDING]
 void setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>> map)
          [OUTSTANDING]
<T> T
unwrap(java.lang.Class<T> arg0)
          [OUTSTANDING]
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractConnection

public AbstractConnection()
Method Detail

createStatement

public java.sql.Statement createStatement()
                                   throws java.sql.SQLException
Creates a Statement object for sending SQL statements to the database. SQL statements without parameters are normally executed using Statement objects. If the same SQL statement is executed many times, it may be more efficient to use a PreparedStatement object.

Result sets created using the returned Statement object will by default be type TYPE_FORWARD_ONLY and have a concurrency level of CONCUR_READ_ONLY.

Specified by:
createStatement in interface java.sql.Connection
Returns:
a new default Statement object
Throws:
java.sql.SQLException - if a database access error occurs

prepareStatement

public java.sql.PreparedStatement prepareStatement(java.lang.String sql)
                                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareCall

public java.sql.CallableStatement prepareCall(java.lang.String sql)
                                       throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareCall in interface java.sql.Connection
Throws:
java.sql.SQLException

nativeSQL

public java.lang.String nativeSQL(java.lang.String sql)
                           throws java.sql.SQLException
[OUTSTANDING]

Specified by:
nativeSQL in interface java.sql.Connection
Throws:
java.sql.SQLException

setAutoCommit

public void setAutoCommit(boolean autoCommit)
                   throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setAutoCommit in interface java.sql.Connection
Throws:
java.sql.SQLException

getAutoCommit

public boolean getAutoCommit()
                      throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getAutoCommit in interface java.sql.Connection
Throws:
java.sql.SQLException

commit

public void commit()
            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
commit in interface java.sql.Connection
Throws:
java.sql.SQLException

rollback

public void rollback()
              throws java.sql.SQLException
[OUTSTANDING]

Specified by:
rollback in interface java.sql.Connection
Throws:
java.sql.SQLException

close

public void close()
           throws java.sql.SQLException
Specified by:
close in interface java.sql.Connection
Throws:
java.sql.SQLException

isClosed

public boolean isClosed()
                 throws java.sql.SQLException
Specified by:
isClosed in interface java.sql.Connection
Throws:
java.sql.SQLException

getMetaData

public java.sql.DatabaseMetaData getMetaData()
                                      throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getMetaData in interface java.sql.Connection
Throws:
java.sql.SQLException

setReadOnly

public void setReadOnly(boolean readOnly)
                 throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setReadOnly in interface java.sql.Connection
Throws:
java.sql.SQLException

isReadOnly

public boolean isReadOnly()
                   throws java.sql.SQLException
[OUTSTANDING]

Specified by:
isReadOnly in interface java.sql.Connection
Throws:
java.sql.SQLException

setCatalog

public void setCatalog(java.lang.String catalog)
                throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setCatalog in interface java.sql.Connection
Throws:
java.sql.SQLException

getCatalog

public java.lang.String getCatalog()
                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getCatalog in interface java.sql.Connection
Throws:
java.sql.SQLException

setTransactionIsolation

public void setTransactionIsolation(int level)
                             throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setTransactionIsolation in interface java.sql.Connection
Throws:
java.sql.SQLException

getTransactionIsolation

public int getTransactionIsolation()
                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getTransactionIsolation in interface java.sql.Connection
Throws:
java.sql.SQLException

getWarnings

public java.sql.SQLWarning getWarnings()
                                throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getWarnings in interface java.sql.Connection
Throws:
java.sql.SQLException

clearWarnings

public void clearWarnings()
                   throws java.sql.SQLException
[OUTSTANDING]

Specified by:
clearWarnings in interface java.sql.Connection
Throws:
java.sql.SQLException

createStatement

public java.sql.Statement createStatement(int resultSetType,
                                          int resultSetConcurrency)
                                   throws java.sql.SQLException
[OUTSTANDING]

Specified by:
createStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareStatement

public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
                                                   int resultSetType,
                                                   int resultSetConcurrency)
                                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareCall

public java.sql.CallableStatement prepareCall(java.lang.String sql,
                                              int resultSetType,
                                              int resultSetConcurrency)
                                       throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareCall in interface java.sql.Connection
Throws:
java.sql.SQLException

getTypeMap

public java.util.Map<java.lang.String,java.lang.Class<?>> getTypeMap()
                                                              throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getTypeMap in interface java.sql.Connection
Throws:
java.sql.SQLException

setTypeMap

public void setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>> map)
                throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setTypeMap in interface java.sql.Connection
Throws:
java.sql.SQLException

setHoldability

public void setHoldability(int holdability)
                    throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setHoldability in interface java.sql.Connection
Throws:
java.sql.SQLException

getHoldability

public int getHoldability()
                   throws java.sql.SQLException
[OUTSTANDING]

Specified by:
getHoldability in interface java.sql.Connection
Throws:
java.sql.SQLException

setSavepoint

public java.sql.Savepoint setSavepoint()
                                throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setSavepoint in interface java.sql.Connection
Throws:
java.sql.SQLException

setSavepoint

public java.sql.Savepoint setSavepoint(java.lang.String name)
                                throws java.sql.SQLException
[OUTSTANDING]

Specified by:
setSavepoint in interface java.sql.Connection
Throws:
java.sql.SQLException

rollback

public void rollback(java.sql.Savepoint savepoint)
              throws java.sql.SQLException
[OUTSTANDING]

Specified by:
rollback in interface java.sql.Connection
Throws:
java.sql.SQLException

releaseSavepoint

public void releaseSavepoint(java.sql.Savepoint savepoint)
                      throws java.sql.SQLException
[OUTSTANDING]

Specified by:
releaseSavepoint in interface java.sql.Connection
Throws:
java.sql.SQLException

createStatement

public java.sql.Statement createStatement(int resultSetType,
                                          int resultSetConcurrency,
                                          int resultSetHoldability)
                                   throws java.sql.SQLException
[OUTSTANDING]

Specified by:
createStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareStatement

public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
                                                   int resultSetType,
                                                   int resultSetConcurrency,
                                                   int resultSetHoldability)
                                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareCall

public java.sql.CallableStatement prepareCall(java.lang.String sql,
                                              int resultSetType,
                                              int resultSetConcurrency,
                                              int resultSetHoldability)
                                       throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareCall in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareStatement

public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
                                                   int autoGeneratedKeys)
                                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareStatement

public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
                                                   int[] columnIndexes)
                                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

prepareStatement

public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
                                                   java.lang.String[] columnNames)
                                            throws java.sql.SQLException
[OUTSTANDING]

Specified by:
prepareStatement in interface java.sql.Connection
Throws:
java.sql.SQLException

createClob

public java.sql.Clob createClob()
                         throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

createBlob

public java.sql.Blob createBlob()
                         throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

isValid

public boolean isValid(int arg0)
                throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

getClientInfo

public java.lang.String getClientInfo(java.lang.String arg0)
                               throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

getClientInfo

public java.util.Properties getClientInfo()
                                   throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

createArrayOf

public java.sql.Array createArrayOf(java.lang.String arg0,
                                    java.lang.Object[] arg1)
                             throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

createStruct

public java.sql.Struct createStruct(java.lang.String arg0,
                                    java.lang.Object[] arg1)
                             throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

unwrap

public <T> T unwrap(java.lang.Class<T> arg0)
         throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException

isWrapperFor

public boolean isWrapperFor(java.lang.Class<?> arg0)
                     throws java.sql.SQLException
[OUTSTANDING]

Throws:
java.sql.SQLException