org.pentaho.di.core.database.Database.setLookup()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中org.pentaho.di.core.database.Database.setLookup()方法的一些代码示例,展示了Database.setLookup()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Database.setLookup()方法的具体详情如下:
包路径:org.pentaho.di.core.database.Database
类名称:Database
方法名:setLookup

Database.setLookup介绍

暂无

代码示例

代码示例来源:origin: pentaho/pentaho-kettle

public void setLookup( String schema, String table, String[] codes, String[] condition, String[] gets,
            String[] rename, String orderby ) throws KettleDatabaseException {
 setLookup( schema, table, codes, condition, gets, rename, orderby, false );
}

代码示例来源:origin: pentaho/pentaho-kettle

public void setLookup( String tableName, String[] codes, String[] condition, String[] gets, String[] rename,
            String orderby, boolean checkForMultipleResults ) throws KettleDatabaseException {
 setLookup( null, tableName, codes, condition, gets, rename, orderby, checkForMultipleResults );
}

代码示例来源:origin: pentaho/pentaho-kettle

public void setLookup( String table, String[] codes, String[] condition, String[] gets, String[] rename,
            String orderby ) throws KettleDatabaseException {
 setLookup( table, codes, condition, gets, rename, orderby, false );
}

代码示例来源:origin: pentaho/pentaho-kettle

meta.getFields( data.outputRowMeta, getStepname(), null, null, this, repository, metaStore );
data.db.setLookup(
 environmentSubstitute( meta.getSchemaName() ), environmentSubstitute( meta.getTablename() ),
 meta.getTableKeyField(), meta.getKeyCondition(), meta.getReturnValueField(),

相关文章

微信公众号

最新文章

更多