Skip to content

CSV File

moutansos edited this page May 9, 2017 · 1 revision

The CSV File Data Source

AbstractData allows for the transfer of data between other data sources and simple .csv files. The type in the scripting language is CSVFile and can be referenced like this:

>> # The standard way to create a reference to a database
>> CSVFile csv1 = "C:\the\path\to\the\file.csv"
>> # Or the Constructor Syntax
>> CSVFile csv2 = new CSVFile(fileName = "C:\the\path\to\the\file.csv")

Clone this wiki locally