The SQLite database file.
Flags : Cached, Required, Parameter (Note this is uncached)
Expression : ``
Internal Use Only.
Flags : Method, Async (Note this is uncached)
Expression : (sql, ...params) => this.instance.all(sql, ...params)
Gets a row.
Flags : Method, Async (Note this is uncached)
Expression : (sql, ...params) => this.instance.get(sql, ...params)
Gets a collection of rows.
Flags : Method, Async (Note this is uncached)
Expression : (sql, ...params) => this.instance.all(sql, ...params)
Internal Use Only.
Flags : Method, Async (Note this is uncached)
Expression : (sql, ...params) => this.instance.get(sql, ...params)
Gets a single value.
Flags : Method (Note this is uncached)
Expression : (sql, fieldName) => this.getRow(sql)[fieldName]
Internal Use Only.
Flags : Cached, Async (Note this is uncached)
Expression : require('sqlite').open(this.pathName, { Promise, cached: true, mode: this.__readOnly ? 1 : 2 })
Internal Use Only.
Flags : Cached (Note this is uncached)
Expression : R.loadFile(this.DBFile)
SqliteDB (d.1.0)
Mixins: BaseModel
An instance of an SQLite database. Note: these databases are effectively read-only; although SQL can change their contents, it is not saved to the next session.