CSV loader

It loads given rows to a CSV file.

Configuration

XPath

Type

Description

csv/@outputFileName

Attribute

Name of the output file

Example

Input data

Row

stringField

integerField

1

String: 'value1'

Integer: 1

2

String: 'value2'

Integer: 2

Pipeline configuration

<csv outputFileName="data/output/output.csv"/>

Output data

stringField

integerField

value1

1

value2

2