Class TableOutputData
- java.lang.Object
-
- org.pentaho.di.trans.step.BaseStepData
-
- org.pentaho.di.trans.steps.tableoutput.TableOutputData
-
- All Implemented Interfaces:
StepDataInterface
public class TableOutputData extends BaseStepData implements StepDataInterface
Storage class for table output step.- Since:
- 24-jan-2005
- Author:
- Matt
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.pentaho.di.trans.step.BaseStepData
BaseStepData.StepExecutionStatus
-
-
Field Summary
Fields Modifier and Type Field Description List<Object[]>
batchBuffer
boolean
batchMode
Use batch mode or not?Map<String,Integer>
commitCounterMap
int
commitSize
org.pentaho.di.core.database.DatabaseMeta
databaseMeta
SimpleDateFormat
dateFormater
Cache of the data formatter objectorg.pentaho.di.core.database.Database
db
int
indexOfPartitioningField
int
indexOfTableNameField
org.pentaho.di.core.row.RowMetaInterface
insertRowMeta
org.pentaho.di.core.row.RowMetaInterface
outputRowMeta
Map<String,PreparedStatement>
preparedStatements
Mapping between the SQL and the actual prepared statement.boolean
releaseSavepoint
Savepoint
savepoint
boolean
sendToErrorRow
String
tableName
boolean
useSafePoints
int[]
valuenrs
int
warnings
-
Constructor Summary
Constructors Constructor Description TableOutputData()
-
Method Summary
-
Methods inherited from class org.pentaho.di.trans.step.BaseStepData
getStatus, isDisposed, isEmpty, isFinished, isIdle, isInitialising, isRunning, isStopped, setStatus
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.pentaho.di.trans.step.StepDataInterface
getStatus, isDisposed, isEmpty, isFinished, isIdle, isInitialising, isRunning, setStatus
-
-
-
-
Field Detail
-
db
public org.pentaho.di.core.database.Database db
-
warnings
public int warnings
-
tableName
public String tableName
-
valuenrs
public int[] valuenrs
-
preparedStatements
public Map<String,PreparedStatement> preparedStatements
Mapping between the SQL and the actual prepared statement. Normally this is only one, but in case we have more then one, it's convenient to have this.
-
indexOfPartitioningField
public int indexOfPartitioningField
-
dateFormater
public SimpleDateFormat dateFormater
Cache of the data formatter object
-
batchMode
public boolean batchMode
Use batch mode or not?
-
indexOfTableNameField
public int indexOfTableNameField
-
sendToErrorRow
public boolean sendToErrorRow
-
outputRowMeta
public org.pentaho.di.core.row.RowMetaInterface outputRowMeta
-
insertRowMeta
public org.pentaho.di.core.row.RowMetaInterface insertRowMeta
-
useSafePoints
public boolean useSafePoints
-
savepoint
public Savepoint savepoint
-
releaseSavepoint
public boolean releaseSavepoint
-
databaseMeta
public org.pentaho.di.core.database.DatabaseMeta databaseMeta
-
commitSize
public int commitSize
-
-