Skip to content

SQLite Database

moutansos edited this page May 15, 2017 · 1 revision

The SQLite Data Source

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")

Clone this wiki locally