-
Notifications
You must be signed in to change notification settings - Fork 1
SQLite Database
moutansos edited this page May 15, 2017
·
1 revision
AbstractData allows for the transfer of data between other data sources and SQLite database files. The type in the scripting language is SQLiteDB and can be referenced like this:
>> # The standard way to create a reference to a database
>> SQLiteDB sqlite1 = "C:\the\path\to\the\file.db"
>> # Or the Constructor Syntax
>> SQLiteDB sqlite2 = new SQLiteDB(fileName = "C:\the\path\to\the\file.db")