|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use GoldenGateDatabaseNoConnectionException | |
---|---|
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 GoldenGateDatabaseNoConnectionException in goldengate.common.database |
---|
Methods in goldengate.common.database that throw GoldenGateDatabaseNoConnectionException | |
---|---|
void |
DbSession.checkConnection()
Check the connection to the Database and try to reopen it if possible |
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 |
PreparedStatement |
DbPreparedStatement.getPreparedStatement()
|
ResultSet |
DbRequest.getResultSet()
|
ResultSet |
DbPreparedStatement.getResultSet()
|
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. |
void |
DbSession.setAutoCommit(boolean autoCommit)
Change the autocommit feature |
void |
DbAdmin.validConnection()
Validate connection |
Constructors in goldengate.common.database that throw GoldenGateDatabaseNoConnectionException | |
---|---|
DbAdmin(Connection conn,
boolean isread)
Use a default server for basic connection. |
|
DbAdmin(DbType driver,
String server,
String user,
String passwd)
Use a default server for basic connection. |
|
DbAdmin(DbType driver,
String server,
String user,
String passwd,
boolean write)
Use a default server for basic connection. |
|
DbPreparedStatement(DbSession ls)
Create a DbPreparedStatement from DbSession object |
|
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 |
|
DbRequest(DbSession ls)
Create a new request from the DbSession |
|
DbSession(Connection connext,
boolean isReadOnly)
Create a session and connect the current object to the connect object given as parameter. |
|
DbSession(DbAdmin admin,
boolean isReadOnly)
Create a session and connect the current object to the server using the DbAdmin object. |
|
DbSession(DbAdmin admin,
boolean isReadOnly,
boolean autoCommit)
Create a session and connect the current object to the server using the DbAdmin object. |
|
DbSession(String server,
String user,
String passwd,
boolean isReadOnly)
Create a session and connect the current object to the server using the string with the form for mysql for instance jdbc:type://[host:port],[failoverhost:port] ... |
|
DbSession(String server,
String user,
String passwd,
boolean isReadOnly,
boolean autoCommit)
Create a session and connect the current object to the server using the string with the form for mysql for instance jdbc:type://[host:port],[failoverhost:port] ... |
Uses of GoldenGateDatabaseNoConnectionException in goldengate.common.database.data |
---|
Methods in goldengate.common.database.data that throw GoldenGateDatabaseNoConnectionException | |
---|---|
static DbDataModel |
DbDataModel.getFromStatement(DbPreparedStatement preparedStatement)
For instance from Commander when getting updated information |
static DbPreparedStatement |
DbDataModel.getUpdatedPrepareStament(DbSession session)
|
protected void |
AbstractDbData.getValue(DbPreparedStatement preparedStatement,
DbValue value)
Get one value into DbValue from DbPreparedStatement |
protected void |
AbstractDbData.getValues(DbPreparedStatement preparedStatement,
DbValue[] values)
Get several values into DbValue from DbPreparedStatement |
protected void |
AbstractDbData.setValue(DbPreparedStatement preparedStatement,
DbValue value)
Set one value to a DbPreparedStatement |
protected void |
AbstractDbData.setValues(DbPreparedStatement preparedStatement,
DbValue[] values)
Set several values to a DbPreparedStatement |
Uses of GoldenGateDatabaseNoConnectionException in goldengate.common.database.model |
---|
Methods in goldengate.common.database.model that throw GoldenGateDatabaseNoConnectionException | |
---|---|
void |
DbModelPostgresql.createTables(DbSession session)
|
void |
DbModelOracle.createTables(DbSession session)
|
void |
DbModelMysql.createTables(DbSession session)
|
void |
DbModelH2.createTables(DbSession session)
|
void |
DbModel.createTables(DbSession session)
Create all necessary tables into the database |
static DbAdmin |
DbModelFactory.initialize(String dbdriver,
String dbserver,
String dbuser,
String dbpasswd,
boolean write)
Initialize the Database Model according to arguments. |
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)
|
void |
DbModelPostgresql.resetSequence(DbSession session,
long newvalue)
|
void |
DbModelOracle.resetSequence(DbSession session,
long newvalue)
|
void |
DbModelMysql.resetSequence(DbSession session,
long newvalue)
|
void |
DbModelH2.resetSequence(DbSession session,
long newvalue)
|
void |
DbModel.resetSequence(DbSession session,
long newvalue)
Reset the sequence (example) |
void |
DbModelPostgresql.validConnection(DbSession dbSession)
|
void |
DbModelAbstract.validConnection(DbSession dbSession)
|
void |
DbModel.validConnection(DbSession dbSession)
Validate connection |
void |
DbModelAbstract.validConnectionSelect(DbSession dbSession)
|
Constructors in goldengate.common.database.model that throw GoldenGateDatabaseNoConnectionException | |
---|---|
DbModelH2()
Create the object and initialize if necessary the driver |
|
DbModelH2(String dbserver,
String dbuser,
String dbpasswd)
Create the object and initialize if necessary the driver |
|
DbModelMysql()
Create the object and initialize if necessary the driver |
|
DbModelMysql(String dbserver,
String dbuser,
String dbpasswd)
Create the object and initialize if necessary the driver |
|
DbModelMysql(String dbserver,
String dbuser,
String dbpasswd,
org.jboss.netty.util.Timer timer,
long delay)
Create the object and initialize if necessary the driver |
|
DbModelOracle()
Create the object and initialize if necessary the driver |
|
DbModelOracle(String dbserver,
String dbuser,
String dbpasswd)
Create the object and initialize if necessary the driver |
|
DbModelOracle(String dbserver,
String dbuser,
String dbpasswd,
org.jboss.netty.util.Timer timer,
long delay)
Create the object and initialize if necessary the driver |
|
DbModelPostgresql()
Create the object and initialize if necessary the driver |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |