Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你能告诉我如何使用Phonegap在sqlite中使用查询从浏览器中删除整个数据库吗?我尝试清除所有缓存历史记录,但数据库仍然存在。我想我需要使用从浏览器中删除的查询来删除数据库。
清除缓存不会删除您的数据库,您可以通过使用phonegap清除浏览器的window.localStorage.clear();本地存储。检查这里 或者 如果你想删除你的数据库使用这个命令 tx.executeSql('DROP TABLE Casepad.CaseTable'),你只需要参考这个phonegap文档来了解更多关于数据库操作的信息。
window.localStorage.clear();
tx.executeSql('DROP TABLE Casepad.CaseTable')