C# Class FdoToolbox.Core.ETL.Specialized.TableToFlatFile

A FdoFeatureTable to flat file data source conversion process
Inheritance: FdoSpecializedEtlProcess
Show file Open project: jumpinjackie/fdotoolbox Class Usage Examples

Public Methods

Method Description
TableToFlatFile ( FdoFeatureTable table, string file ) : System

Initializes a new instance of the TableToFlatFile class.

TableToFlatFile ( FdoFeatureTable table, string file, int reportFrequency ) : System

Initializes a new instance of the TableToFlatFile class.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

Initialize ( ) : void

Initializes this instance.

OnFeatureProcessed ( FdoOperationBase op, FdoRow dictionary ) : void

Called when a row is processed.

OnFinishedProcessing ( FdoOperationBase op ) : void

Called when this process has finished processing.

Method Details

Dispose() protected method

Releases unmanaged and - optionally - managed resources
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

Initialize() protected method

Initializes this instance.
protected Initialize ( ) : void
return void

OnFeatureProcessed() protected method

Called when a row is processed.
protected OnFeatureProcessed ( FdoOperationBase op, FdoRow dictionary ) : void
op FdoToolbox.Core.ETL.Operations.FdoOperationBase The operation.
dictionary FdoRow The dictionary.
return void

OnFinishedProcessing() protected method

Called when this process has finished processing.
protected OnFinishedProcessing ( FdoOperationBase op ) : void
op FdoToolbox.Core.ETL.Operations.FdoOperationBase The op.
return void

TableToFlatFile() public method

Initializes a new instance of the TableToFlatFile class.
public TableToFlatFile ( FdoFeatureTable table, string file ) : System
table FdoToolbox.Core.Feature.FdoFeatureTable The table.
file string The file.
return System

TableToFlatFile() public method

Initializes a new instance of the TableToFlatFile class.
public TableToFlatFile ( FdoFeatureTable table, string file, int reportFrequency ) : System
table FdoToolbox.Core.Feature.FdoFeatureTable The table.
file string The file.
reportFrequency int The report frequency.
return System