SQL adaptation guide For SQLite 3.5.x, 3.6.x / Installation (Runtime Configuration) |
SQLite version | Shared library environment setting |
---|---|
SQLite 3.5 and higher | UNIX: Add $SQLITEDIR/lib to LD_LIBRARY_PATH (or its equivalent). Windows: Add %SQLITEDIR%\bin to PATH. |
The 'source' parameter defines the path to the SQLite database file. Note that the database file must reside on the local disk (SQLite does not support network file systems). SQLite also supports in-memory database creation with the :memory: db specification. See SQLite documentation (sqlite3_open) for more details.