The root element for an Export XML Document.
1..*
<entity>
The list of tables to be exported.
Name | Type | Required | Description |
table | string | required | The table name contains the data to be exported. |
target | string | required | The file that will contain the rows exported from the database. |
encoding | string | optional | The target file's encoding charset. |
schema | string | optional | The schema name of the table. |
catalog | string | optional | The catalog name of the table. |
where | string | optional | The where clause to be appended to the SQL selection statement. |
engine | string | optional | The export engine classname to use when exporting rows for the entity. |
1
<delimiter>
The delimiter formatter definition used to format the target file.
Name | Type | Required | Description |
type | string | required | The type of delimiter formatter. The value should map to the class that implements
DelimiterFormatter. |
0..*
<property>
The properties applied to the delimiter formatter.
Name | Type | Required | Description |
name | string | required | The name of the property. |
value | string | required | The value of the property. |
1..*
<column>
The list of columns in the table and target file
Name | Type | Required | Description |
name | string | required | The name of the column. |
SQLType | sqlType | optional | The type of the column. |
translator | string | optional | The class that will translate the values after they are exported. |
format | string | optional | The format pattern used to describe how to format numbers or dates. |
0..1
<translator>
The column translator that will be used to translate column values.
Name | Type | Required | Description |
type | string | required | The type of column translator. The value should map to the class that implements
ColumnTranslator. |
0..*
<property>
The properties applied to the column translator.
Name | Type | Required | Description |
name | string | required | The name of the property. |
value | string | required | The value of the property. |