Results 1 comments of Thanh Le

My idea is fetching the content from sql file. Then we will execute this sql content. ``` fetch('query.sql') .then(response => response.text()) .then(query => { console.log(query); this.db.transaction(txn => { txn.executeSql(query, args,...