Uses of Class
org.pentaho.di.core.Result
-
Packages that use Result Package Description org.pentaho.di.core org.pentaho.di.core.database Contains all the different database dialects as well as the DatabaseMeta class (definition) and the Database class (execution) -
-
Uses of Result in org.pentaho.di.core
Methods in org.pentaho.di.core that return Result Modifier and Type Method Description Result
Result. clone()
Clones the Result, including rows and files.Result
Result. lightClone()
Performs a semi-deep copy/clone but does not clone the rows from the ResultMethods in org.pentaho.di.core with parameters of type Result Modifier and Type Method Description void
Result. add(Result res)
Add the numbers of lines from a different result to this result -
Uses of Result in org.pentaho.di.core.database
Methods in org.pentaho.di.core.database that return Result Modifier and Type Method Description Result
Database. execStatement(String sql)
Execute an SQL statement on the database connection (has to be open)Result
Database. execStatement(String rawsql, RowMetaInterface params, Object[] data)
Result
Database. execStatements(String script)
Execute a series of SQL statements, separated by ;Result
Database. execStatements(String script, RowMetaInterface params, Object[] data)
Execute a series of SQL statements, separated by ;Result
Database. execStatementsFromFile(String filename, boolean sendSinglestatement)
Execute an SQL statement inside a file on the database connection (has to be open)
-