How to delete a database in WebSQL programmatically?

后端 未结 9 1013
执念已碎
执念已碎 2020-12-25 10:03

I am new to Web SQL database and I use it to save data in a local database in a web page.

 I can create a database

9条回答
  •  甜味超标
    2020-12-25 10:27

    In my library implementation, I just delete all tables. Which, indeed, delete the database. List of tables are select * from sqlite_master.

提交回复
热议问题