use of org.dbflute.logic.jdbc.metadata.info.DfTableMeta in project dbflute-core by dbflute.
the class DfRepsSequenceHandlerJdbc method findTableInfo.
protected DfTableMeta findTableInfo(Connection conn, String tableName) throws SQLException {
final DfTableMeta table = _tableMap.get(tableName);
if (table == null) {
String msg = "Failed to find the table in generated target tables:";
msg = msg + " table=" + tableName + " target=" + _tableMap.keySet();
throw new DfPropertySettingTableNotFoundException(msg);
}
return table;
}
Aggregations