I'm just curious about the default key-value usage.
import {Storage, SqlStorage } from 'ionic-angular';
let storage = new Storage(SqlStorage);
storage.set(key, value);
storage.get(key).then((value) => { ... });
Where can I find the sqlite file(s)?
I assume I will be able to read/write outside of the app; is that true? Honestly I'm only interested for debugging reasons, so it would be okay if I can only have read access, and only after the app is closed. And I particularly interested on my desktop during development (as opposed to on a device). Do I have to use the backup file option and specify my own path for the database in order to do that?