Options for the pragma() method.
https://sqlite.org/pragma.html
Optional
Readonly
When true, returns only the first column of the first row. This is useful for pragmas that return a single value.
false Copy
false
// Without simple: returns [{ cache_size: -16000 }]db.pragma('cache_size');// With simple: returns -16000db.pragma('cache_size', { simple: true }); Copy
// Without simple: returns [{ cache_size: -16000 }]db.pragma('cache_size');// With simple: returns -16000db.pragma('cache_size', { simple: true });
Options for the pragma() method.
See
https://sqlite.org/pragma.html