SQLStorage on iOS not working

Hi,
i’m using the sqlStorage in my app. With android it works perfect but in ios, there is no storage created… i use it like this:
// SQL Storage this.storage = new Storage(SqlStorage); this.storage.query('CREATE TABLE IF NOT EXISTS settings(key VARCHAR(50), value VARCHAR(255), PRIMARY KEY(key))');

Safari shows me nothing at developer view… Can someone help?

Have you tried to do the following?

this.storage = new Storage(SqlStorage);
this.storage.query(‘CREATE TABLE IF NOT EXISTS settings(key VARCHAR(50), value VARCHAR(255), PRIMARY KEY(key))’).then(result=>{
console.log(JSON.stringify(result, null, 4));
}, error => {
console.error(JSON.stringify(error, null, 4));
}
);