SQLiteDatabase.LoadExtensions
From Xojo Documentation
Property (As Boolean )
aSQLiteDatabase.LoadExtensions = newBooleanValue
or
BooleanValue = aSQLiteDatabase.LoadExtensions
New in 2014r2
Supported for all project types and targets.
or
BooleanValue = aSQLiteDatabase.LoadExtensions
New in 2014r2
Supported for all project types and targets.
The default is False. Set this to True before loading an SQLite extension. After loading the extension, this property gets reset to False.
Notes
This allows SQLite Run-Time Loadable extensions to be loaded. For more information:
To load an extension, execute an SQL command like this:
SELECT load_extension ('/path/to/extensionfile', 'sqlite3_extension_init')
More on loading extensions, e.g. the ICU library for unicode support, can be found on Thomas Tempelmann's Blog post