Uses of Class
goldengate.common.database.exception.GoldenGateDatabaseSqlException

Packages that use GoldenGateDatabaseSqlException
goldengate.common.database Classes implementing Database access 
goldengate.common.database.data Classes implementing Database Data model 
goldengate.common.database.model Classes implementing Database Model (H2, Oracle, PostgreSQL, MySQL) 
 

Uses of GoldenGateDatabaseSqlException in goldengate.common.database
 

Methods in goldengate.common.database that throw GoldenGateDatabaseSqlException
 void DbSession.commit()
          Commit everything
 void DbAdmin.commit()
          Commit on connection (since in autocommit, should not be used)
 void DbPreparedStatement.createPrepareStatement(String requestarg)
          Create a preparedStatement from request
 void DbPreparedStatement.executeQuery()
          Execute a Select preparedStatement
 int DbPreparedStatement.executeUpdate()
          Execute the Update/Insert/Delete preparedStatement
 boolean DbRequest.getNext()
          Move the cursor to the next result
 boolean DbPreparedStatement.getNext()
          Move the cursor to the next result
 int DbRequest.query(String query)
          Execute a UPDATE/INSERT/DELETE statement and returns the number of row.
 void DbSession.recreateLongTermPreparedStatements()
          Due to a reconnection, recreate all associated long term PreparedStatements
 void DbPreparedStatement.recreatePreparedStatement()
          In case of closing database connection, it is possible to reopen a long term preparedStatement as it was at creation.
 void DbSession.releaseSavepoint(Savepoint savepoint)
          Release the savepoint
 void DbSession.rollback(Savepoint savepoint)
          Rollback from the savepoint or the last set if null
 Savepoint DbSession.savepoint()
          Make a savepoint
 void DbRequest.select(String select)
          Execute a SELECT statement and set of Result.
 

Constructors in goldengate.common.database that throw GoldenGateDatabaseSqlException
DbPreparedStatement(DbSession ls, String request)
          Create a DbPreparedStatement from DbSession object and a request
DbPreparedStatement(DbSession ls, String request, int nbFetch)
          Create a DbPreparedStatement from DbSession object and a request
 

Uses of GoldenGateDatabaseSqlException in goldengate.common.database.data
 

Methods in goldengate.common.database.data that throw GoldenGateDatabaseSqlException
static DbDataModel DbDataModel.getFromStatement(DbPreparedStatement preparedStatement)
          For instance from Commander when getting updated information
static void AbstractDbData.getTrueValue(ResultSet rs, DbValue value)
          Get one value into DbValue from ResultSet
static DbPreparedStatement DbDataModel.getUpdatedPrepareStament(DbSession session)
           
 Object DbValue.getValue()
           
protected  void AbstractDbData.getValue(DbPreparedStatement preparedStatement, DbValue value)
          Get one value into DbValue from DbPreparedStatement
 String DbValue.getValueAsString()
           
protected  void AbstractDbData.getValues(DbPreparedStatement preparedStatement, DbValue[] values)
          Get several values into DbValue from DbPreparedStatement
protected  void DbDataModel.setFromArray()
           
protected abstract  void AbstractDbData.setFromArray()
          Internal function to retrieve data from Array to pull data from database
static void AbstractDbData.setTrueValue(PreparedStatement ps, DbValue value, int rank)
          Set Value into PreparedStatement
protected  void AbstractDbData.setValue(DbPreparedStatement preparedStatement, DbValue value)
          Set one value to a DbPreparedStatement
 void DbValue.setValueFromString(String svalue)
           
protected  void AbstractDbData.setValues(DbPreparedStatement preparedStatement, DbValue[] values)
          Set several values to a DbPreparedStatement
 

Uses of GoldenGateDatabaseSqlException in goldengate.common.database.model
 

Methods in goldengate.common.database.model that throw GoldenGateDatabaseSqlException
 long DbModelPostgresql.nextSequence(DbSession dbSession)
           
 long DbModelOracle.nextSequence(DbSession dbSession)
           
 long DbModelMysql.nextSequence(DbSession dbSession)
           
 long DbModelH2.nextSequence(DbSession dbSession)
           
 long DbModel.nextSequence(DbSession dbSession)
           
 



Copyright © 2009-2012 Frederic Bregier. All Rights Reserved.