use of org.dbflute.outsidesql.factory.OutsideSqlExecutorFactory in project dbflute-core by dbflute.
the class BehaviorCommandInvoker method createOutsideSqlAllFacadeExecutor.
// ===================================================================================
// OutsideSql
// ==========
/**
* @param <BEHAVIOR> The type of behavior.
* @param tableDbName The DB name of table. (NotNull)
* @return The new-created all facade executor of outside SQL. (NotNull)
*/
public <BEHAVIOR> OutsideSqlAllFacadeExecutor<BEHAVIOR> createOutsideSqlAllFacadeExecutor(String tableDbName) {
final OutsideSqlExecutorFactory factory = _invokerAssistant.assistOutsideSqlExecutorFactory();
final DBDef dbdef = _invokerAssistant.assistCurrentDBDef();
// might be null
final OutsideSqlOption option = _invokerAssistant.assistFirstOutsideSqlOption(tableDbName);
return factory.createAllFacade(factory.createBasic(this, tableDbName, dbdef, option));
}
Aggregations