Interface SourceDatabaseConfiguration
-
- All Superinterfaces:
DatabaseConfiguration
- All Known Implementing Classes:
Db2SourceDatabaseConfiguration
,DefaultSourceDatabaseConfiguration
,DerbySourceDatabaseConfiguration
,GenericSourceDatabaseConfiguration
,H2DbSourceDatabaseConfiguration
,HsqldbSourceDatabaseConfiguration
,ImportDumpDatabaseConfiguration
,MariaDbSourceDatabaseConfiguration
,MsAccessSourceDatabaseConfiguration
,MsSqlSourceDatabaseConfiguration
,MySqlSourceDatabaseConfiguration
,OracleSourceDatabaseConfiguration
,PostgresqlSourceDatabaseConfiguration
public interface SourceDatabaseConfiguration extends DatabaseConfiguration
Configuration methods for source data base. Implementations may execute specific initialization code before and after operations are executed.© 2012-2034 akquinet tech@spree
- Author:
- M. Dahm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterSelect(Connection connection, String connectorId, TableMetaData table)
Called after a SELECT clause is executed.void
beforeSelect(Connection connection, String connectorId, TableMetaData table)
Called before a SELECT clause is executed.void
finalizeSourceConnection(Connection connection, String connectorId)
Called after actions have been performed.void
initializeSourceConnection(Connection connection, String connectorId)
Called before any real action is performed.-
Methods inherited from interface de.akquinet.jbosscc.guttenbase.configuration.DatabaseConfiguration
afterTableCopy, beforeTableCopy
-
-
-
-
Method Detail
-
initializeSourceConnection
void initializeSourceConnection(Connection connection, String connectorId) throws SQLException
Called before any real action is performed.- Throws:
SQLException
-
finalizeSourceConnection
void finalizeSourceConnection(Connection connection, String connectorId) throws SQLException
Called after actions have been performed.- Throws:
SQLException
-
beforeSelect
void beforeSelect(Connection connection, String connectorId, TableMetaData table) throws SQLException
Called before a SELECT clause is executed.- Throws:
SQLException
-
afterSelect
void afterSelect(Connection connection, String connectorId, TableMetaData table) throws SQLException
Called after a SELECT clause is executed.- Throws:
SQLException
-
-