return table.query(sourceId);
}
private TransactionIsolationLevel getTransactionIsolationLevel(SourcesTabRow row) throws SQLException {
SourcePropertiesTab table = new SourcePropertiesTab(tranDbConn);
String value = table.query(row.get_source_id(), SourceProperties.TRANSACTION_ISOLATION_LEVEL);
return parseTransactionIsolationLevel(value);
}
}