sqlj.runtime
Class ExecutionContext.OracleContext

java.lang.Object
  |
  +--sqlj.runtime.ExecutionContext.OracleContext
Enclosing class:
ExecutionContext

public static class ExecutionContext.OracleContext
extends java.lang.Object


Method Summary
 boolean isNew()
           
 void oracleClose()
           
 void oracleCloseQuery()
           
 void oracleCommit(ConnectionContextImpl occ)
           
 void oracleExecuteBatchableUpdate()
           
 oracle.jdbc.OracleResultSet oracleExecuteQuery()
           
 void oracleExecuteUpdate()
           
 void oracleReleaseSavepoint(ConnectionContextImpl occ, java.lang.Object savepoint)
          Release the save point, savepoint from the JDBC connection associated with occ
 void oracleRollback(ConnectionContextImpl occ)
           
 void oracleRollbackToSavepoint(ConnectionContextImpl occ, java.lang.Object savepoint)
          Rollback to the save point, savepoint for the JDBC connection associated with occ
 java.lang.Object oracleSetSavepoint(ConnectionContextImpl occ, java.lang.String name)
          Set save point, named name , for the JDBC connection associated with occ .
 oracle.jdbc.OraclePreparedStatement prepareOracleBatchableStatement(ConnectionContextImpl occ, java.lang.String key, java.lang.String sql)
           
 oracle.jdbc.OracleCallableStatement prepareOracleCall(ConnectionContextImpl occ, java.lang.String key, java.lang.String sql)
           
 oracle.jdbc.OraclePreparedStatement prepareOracleStatement(ConnectionContextImpl occ, java.lang.String key, java.lang.String sql)
           
 oracle.jdbc.OraclePreparedStatement prepareOracleStatement(ConnectionContextImpl occ, java.lang.String key, java.lang.String sql, int type, int concurrency)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

isNew

public boolean isNew()

prepareOracleStatement

public oracle.jdbc.OraclePreparedStatement prepareOracleStatement(ConnectionContextImpl occ,
                                                                  java.lang.String key,
                                                                  java.lang.String sql)
                                                           throws java.sql.SQLException

prepareOracleStatement

public oracle.jdbc.OraclePreparedStatement prepareOracleStatement(ConnectionContextImpl occ,
                                                                  java.lang.String key,
                                                                  java.lang.String sql,
                                                                  int type,
                                                                  int concurrency)
                                                           throws java.sql.SQLException

prepareOracleBatchableStatement

public oracle.jdbc.OraclePreparedStatement prepareOracleBatchableStatement(ConnectionContextImpl occ,
                                                                           java.lang.String key,
                                                                           java.lang.String sql)
                                                                    throws java.sql.SQLException

prepareOracleCall

public oracle.jdbc.OracleCallableStatement prepareOracleCall(ConnectionContextImpl occ,
                                                             java.lang.String key,
                                                             java.lang.String sql)
                                                      throws java.sql.SQLException

oracleExecuteUpdate

public void oracleExecuteUpdate()
                         throws java.sql.SQLException

oracleExecuteBatchableUpdate

public void oracleExecuteBatchableUpdate()
                                  throws java.sql.SQLException

oracleExecuteQuery

public oracle.jdbc.OracleResultSet oracleExecuteQuery()
                                               throws java.sql.SQLException

oracleCommit

public void oracleCommit(ConnectionContextImpl occ)
                  throws java.sql.SQLException

oracleRollback

public void oracleRollback(ConnectionContextImpl occ)
                    throws java.sql.SQLException

oracleClose

public void oracleClose()
                 throws java.sql.SQLException

oracleCloseQuery

public void oracleCloseQuery()

oracleSetSavepoint

public java.lang.Object oracleSetSavepoint(ConnectionContextImpl occ,
                                           java.lang.String name)
                                    throws java.sql.SQLException
Set save point, named name , for the JDBC connection associated with occ .
See Also:
OracleConnection.oracleSetSavepoint()

oracleRollbackToSavepoint

public void oracleRollbackToSavepoint(ConnectionContextImpl occ,
                                      java.lang.Object savepoint)
                               throws java.sql.SQLException
Rollback to the save point, savepoint for the JDBC connection associated with occ
See Also:
OracleConnection.oracleRollback(oracle.jdbc.OracleSavepoint)

oracleReleaseSavepoint

public void oracleReleaseSavepoint(ConnectionContextImpl occ,
                                   java.lang.Object savepoint)
                            throws java.sql.SQLException
Release the save point, savepoint from the JDBC connection associated with occ
See Also:
OracleConnection.oracleReleaseSavepoint(oracle.jdbc.OracleSavepoint)