export-to-dbf-file
Last updated
export-to-dbf-file adaptor exports a datatable as a dBase database file.
data
Type: datatable
Required: Yes
Data to be imported.
column types
Type: dictionary
Required: Yes
A dictionary of column name with data type.
output file name
Type: text
Required: No
The name of the file to create. If unspecified, defaults to file.dbf.
dbf
Type: file
Exported file DBF format
data:
1
GB
United Kingdom
2
TR
Turkey
3
US
United States
column types:
id
N 2
code
C 100
countries
C 100
output file name: null (empty)
file: file.dbf
-> Exported datatable to a dBase file.
Last updated