Package etl :: Package component :: Package output :: Module sql_out' :: Class sql_out
[hide private]
[frames] | no frames]

Class sql_out

source code

          object --+        
                   |        
              signal --+    
                       |    
control.sleep'.component --+
                           |
                          sql_out

This is an ETL Component that writes data in SQL table.

Type : Data Component. Computing Performance : Streamline. Input Flows : 0-x. * .* : The main data flow with input data. Output Flows : 0-1. * main : Return all data.

Instance Methods [hide private]
 
__copy__(self) source code
 
__init__(self, sqlconnector, sqltable, name='component.output.sql_out', transformer=None, row_limit=0)
Required Parameters sql_connector : SQL connector.
source code
 
end(self) source code
 
process(self)
Process method of ETL component.
source code

Inherited from control.sleep'.component: __str__, channel_get, copy, error, generator_get, get_trigger_data, input_get, is_end, is_start, pause, start, stop, warning

Inherited from signal: signal, signal_connect, signal_unconnect

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__copy__(self)

source code 
Overrides: control.sleep'.component.__copy__

__init__(self, sqlconnector, sqltable, name='component.output.sql_out', transformer=None, row_limit=0)
(Constructor)

source code 

Required Parameters sql_connector : SQL connector. sqltable : The name of the SQL table.

Extra Parameters name : Name of Component. transformer : Transformer object to transform string data into particular object. row_limit : Limited records are sent to destination if row limit is specified. If row limit is 0, all records are sent.
Overrides: control.sleep'.component.__init__

end(self)

source code 
Overrides: control.sleep'.component.end

process(self)

source code 
Process method of ETL component.
Overrides: control.sleep'.component.process
(inherited documentation)