void |
DataBaseConnector.checkTableDefinition(java.lang.String tableName) |
Checks whether the given table matches the active table schema.
|
void |
DataBaseConnector.checkTableDefinition(java.lang.String tableName,
java.lang.String schemaName) |
Compares the actual table in the database with its definition in the xml
configuration
Note: This method currently does not check other then primary key columns for
tables that reference another table, even if those should actually be data
tables.
|
void |
DataBaseConnector.checkTableSchemaCompatibility(java.lang.String... schemaNames) |
|
void |
DataBaseConnector.checkTableSchemaCompatibility(java.lang.String referenceSchema,
java.lang.String[] schemaNames) |
|
java.util.List<java.lang.Object[]> |
DataBaseConnector.retrieveAndMark(java.lang.String subsetTableName,
java.lang.String readerComponent,
java.lang.String hostName,
java.lang.String pid) |
Retrieves from a subset-table limit primary keys whose rows are
not marked to be in process or finished being processed and sets the rows of
the retrieved primary keys as being "in process".
|
java.util.List<java.lang.Object[]> |
DataBaseConnector.retrieveAndMark(java.lang.String subsetTableName,
java.lang.String readerComponent,
java.lang.String hostName,
java.lang.String pid,
int limit,
java.lang.String order) |
Retrieves primary keys from a subset table and marks them as being "in
process".
|
java.util.List<java.lang.Object[]> |
DataBaseConnector.retrieveAndMark(java.lang.String subsetTableName,
java.lang.String schemaName,
java.lang.String readerComponent,
java.lang.String hostName,
java.lang.String pid,
int limit,
java.lang.String order) |
Retrieves from a subset-table limit primary keys whose rows are
not marked to be in process or finished being processed and sets the rows of
the retrieved primary keys as being "in process".
|