The file for creating/opening database from it. If the given file is Assets, the database will be open but if assets not exists the exception will thrown. The parameter will setted if only given in constructor.
1.0
A boolean value that represents database object is in-memory or not. In-memory databases are a way faster than normal databases but in-memory databases are temporary, you can not save them into a file. When database closes or application stopped, database will be destroyed. The parameter will setted if only given in constructor.
1.0
Execute SELECT SQL Command on Database. Method will thrown exception when execution failed.
query
1.0
Generated using TypeDoc
Since
1.0
See
Database is query friendly persisted data interface for perfoming database operations using SQLite. You can open database from assets or create/open database from file system. Also you can create in-memory database too. We recommend to use Squel.js library for creating SQL Queries.
Example