Hello I have a database in SQLite and would like to know how do I do for my application to use it locally?
Currently I am using the following command to create the database:
db = $cordovaSQLite.openDB({name: “mydatabase.db”, iosDatabaseLocation: ‘default’});
My ready database stays in this project folder:
ApplicationName/www/database/mydatabase.db
Thank you!