-
Notifications
You must be signed in to change notification settings - Fork 1
CSV File
moutansos edited this page May 9, 2017
·
1 revision
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")