Currently to get sqlstorage I have to do an async call like this which returns a promise.
this.platform.ready().then(() => {
this.storage = new Storage(SqlStorage);
this.storage.get(‘email’).then((email) => {
.
.
.
I do not want to do an async call, rather I need to make sure this I retrieve the content from the data base synchronously. Can I do this?