Sparksee
6.0.2
|
Public Member Functions | |
virtual void | Write (sparksee::gdb::StringList &row)=0 throw (sparksee::gdb::IOException, sparksee::gdb::Error) |
Writes the next row. More... | |
virtual void | Close ()=0 throw (sparksee::gdb::IOException, sparksee::gdb::Error) |
Closes the writer. More... | |
virtual | ~RowWriter () |
Destructor. | |
Protected Member Functions | |
RowWriter () | |
Empty constructor. More... | |
RowWriter interface.
Common interface for those writers which dump the data from an string array.
It works as follows: perform as many write operations as necessary and call close once at the end. Once close is called no more write operations can be executed.
Check out the 'Data export' section in the SPARKSEE User Manual for more details on this.
|
inlineprotected |
Empty constructor.
Protected because no one should instantiate a RowWriter. Just inherited classes can use this empty constructor.
References END_SPARKSEE_IO_NAMESPACE.
|
pure virtual |
|
pure virtual |
Writes the next row.
row | [in] Row of data. |
IOException | If bad things happen during the write. |
Implemented in CSVWriter.