com.ziclix.python.sql.pipe
Interface Sink
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description voidend()Invoked at the end of the data pipelining session.voidrow(PyObject row)Invoked for each row of data.voidstart()Invoked at the start of the data pipelining session.
-
-
-
Method Detail
-
start
void start()
Invoked at the start of the data pipelining session.
-
row
void row(PyObject row)
Invoked for each row of data. In general, the first row of data will consist of header information in the format:
[(colName, colType), ...] and in the format:
(colData, colData, ...) for all other data.
-
end
void end()
Invoked at the end of the data pipelining session. This is useful for flushing any buffers or handling any cleanup. This method is guaranteed to be called.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG