Provides a data provider for reading CSV files.
More...
#include <CsvWriteDataProvider.qc.dox.h>
Inherits DataProvider::AbstractDataProvider.
|
| constructor (*hash< auto > options) |
| Creates the object from constructor options.
|
|
| constructor (OutputStream stream, *hash< auto > opts) |
| Creates the CsvWriteDataProvider with the output data stream where data will be writeen and an option hash. More...
|
|
| constructor (string path, *hash< auto > opts) |
| Creates the CsvWriteDataProvider with the output path and optionally an option hash. More...
|
|
string | getName () |
| Returns the object name.
|
|
|
const | ConstructorOptions |
| Constructor options.
|
|
const | CsvGenerationOptionList = keys (ConstructorOptions - ("path", "stream")) |
| CSV generation option list.
|
|
const | ProviderInfo |
| Provider info.
|
|
|
*hash< auto > | createRecordImpl (hash< auto > rec, *hash< auto > create_options) |
| Creates the given record to the data provider. More...
|
|
*hash< string, AbstractDataField > | getRecordTypeImpl (*hash< auto > search_options) |
| Returns the description of the record type, if any.
|
|
hash< DataProviderInfo > | getStaticInfoImpl () |
| Returns data provider static info.
|
|
Provides a data provider for reading CSV files.
◆ constructor() [1/2]
CsvUtil::CsvWriteDataProvider::constructor |
( |
OutputStream |
stream, |
|
|
*hash< auto > |
opts |
|
) |
| |
Creates the CsvWriteDataProvider with the output data stream where data will be writeen and an option hash.
- Parameters
-
- Exceptions
-
CSVSTREAMWRITER-ERROR | option error |
◆ constructor() [2/2]
CsvUtil::CsvWriteDataProvider::constructor |
( |
string |
path, |
|
|
*hash< auto > |
opts |
|
) |
| |
Creates the CsvWriteDataProvider with the output path and optionally an option hash.
- Parameters
-
- Exceptions
-
CSVFILEWRITER-ERROR | option error |
◆ createRecordImpl()
*hash< auto > CsvUtil::CsvWriteDataProvider::createRecordImpl |
( |
hash< auto > |
rec, |
|
|
*hash< auto > |
create_options |
|
) |
| |
|
protected |
Creates the given record to the data provider.
- Parameters
-
rec | a hash representing a single input record |
create_options | the create options after processing by validateCreateOptions() |
- Returns
- the data written to the data provider