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)
|
Modifier and Type | Method and 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 Result
|
Modifier and Type | Method and Description |
---|---|
void |
Result.add(Result res)
Add the numbers of lines from a different result to this result
|
Modifier and Type | Method and 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 ;
We are already connected...
|
Result |
Database.execStatements(String script,
RowMetaInterface params,
Object[] data)
Execute a series of SQL statements, separated by ;
We are already connected...
|
Result |
Database.execStatementsFromFile(String filename,
boolean sendSinglestatement)
Execute an SQL statement inside a file on the database connection (has to be open)
|