papi-dts
    Preparing search index...

    Variable databaseConst

    Service that allows to interact with SQLite databases. You can create an instance of a SQLite database connection using openDatabase, and then run queries on it using run or select. You can also attach and detach databases to the current database connection instance using attachDatabase and detachDatabase.

    A database connection is an instance of sqlite3 pointed to a database file. There may be multiple instances of database connections pointing to the same file, and one instance of a database connection may have additional database files attached to it.

    Make sure to call closeDatabase on any database connection you open with openDatabase to avoid memory leaks.