1// note: This code needs to be run on a device, not in a PC browser.
2// if you
3let connection = this.sqlite.create({
4 name: 'cards.db',
5 location: 'default'
6});
7
8// se a conexão for válida
9if(connection)
10 connection.then((db: SQLiteObject) => {})