org.pentaho.di.trans.steps.tableoutput
Class TableOutputData

java.lang.Object
  extended by org.pentaho.di.trans.step.BaseStepData
      extended by 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
 List<Object[]> batchBuffer
           
 boolean batchMode
          Use batch mode or not?
 Map<String,Integer> commitCounterMap
           
 int commitSize
           
 DatabaseMeta databaseMeta
           
 SimpleDateFormat dateFormater
          Cache of the data formatter object
 Database db
           
 int indexOfPartitioningField
           
 int indexOfTableNameField
           
 RowMetaInterface insertRowMeta
           
 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
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
equals, 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 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

batchBuffer

public List<Object[]> batchBuffer

sendToErrorRow

public boolean sendToErrorRow

outputRowMeta

public RowMetaInterface outputRowMeta

insertRowMeta

public RowMetaInterface insertRowMeta

useSafePoints

public boolean useSafePoints

savepoint

public Savepoint savepoint

releaseSavepoint

public boolean releaseSavepoint

databaseMeta

public DatabaseMeta databaseMeta

commitCounterMap

public Map<String,Integer> commitCounterMap

commitSize

public int commitSize
Constructor Detail

TableOutputData

public TableOutputData()