SQLite and table creation

Hi, I inserted test table with key name do db but I can’t see it in browser in Web SQL.

Should I make something else?

Here is my code:

      this.sqlite.create({
                name: 'database.db',
                location: 'default'
            })
                .then((db: SQLiteObject) => {


                    db.executeSql('CREATE TABLE test(name VARCHAR(32))', {})
                        .then(() => {
                            console.log('Executed SQL')

                    })
                        .catch(e => console.log(e));

                   
                })
                .catch(e => console.log(e));

No one knows, what can be wrong?

thanks

What’s “wrong” is that the cordova SQLite plugin doesn’t work in browsers. This is a major reason I suggest people who don’t absolutely need SQL try to use ionic-storage instead, because it gracefully works everywhere.