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.
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 usingrunorselect. You can also attach and detach databases to the current database connection instance usingattachDatabaseanddetachDatabase.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
closeDatabaseon any database connection you open withopenDatabaseto avoid memory leaks.