public OutputMySQL call(String dataSourceBean, String tableName, String modeName) {
DataSource dataSource = beanFactory.getBean(dataSourceBean, DataSource.class);
int mode = getMode(modeName);
if (mode == OutputSQL.MODE_UPDATE)
throw new RuntimeException("MODE_UPDATE must special updateColumns");
return new OutputMySQL(dataSource, tableName, mode);
}