如何对 PhoneGap 应用程序中的 SQLite 数据库进行故障排除?

发布于 2025-01-04 07:37:45 字数 169 浏览 1 评论 0原文

我将 Phonegap 和 Lawnchair 与 SQLitePlugin 适配器 (https://github.com/davibe/Phonegap-SQLitePlugin) 一起使用。如何对数据库进行故障排除以查看发生了什么?数据库似乎没有像本地存储那样显示在网络检查器工具中。我如何知道数据库是否发生任何情况?

I am using Phonegap and Lawnchair with the SQLitePlugin adapter (https://github.com/davibe/Phonegap-SQLitePlugin). How do I troubleshoot the DB to see what's happening? The DB doesn't seem to show up in the web inspector tool as a localstrorage would. How do I know if anything is happening with the DB?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凡间太子 2025-01-11 07:37:45

如果您使用phonegap构建,您可以使用手机上的调试器并可以访问控制台来运行您需要的任何javascript。

https://build.phonegap.com

If you use phonegap build, you can use a debugger on you phone and have access to a console to run any javascript you need.

https://build.phonegap.com

说不完的你爱 2025-01-11 07:37:45

我使用这个免费的应用程序:

Sqlite DB Browser
http://sqlitebrowser.org/

如果您在 Chrome 中使用 Ripple 扩展,则可以打开位于在:

C:\Users\User\AppData\Local\Google\Chrome\MY_USERNAME\Data\Default\databases\http_127.0.0.1_3000

最后一个文件夹取决于您访问调试应用程序的 URL 和端口。前任。 http_localhost_3000http_127.0.0.1_3000

请注意,ripple 文件创建的 Sqlite 数据库没有扩展名,文件名类似于 “6”。

通过这个应用程序,我设法实时浏览和检查数据库中的数据,如果您使用此应用程序插入或编辑数据,请务必按下写入按钮更改,因为如果不这样做,您的phonegap应用程序将会崩溃。

I use this free app:

Sqlite DB Browser
http://sqlitebrowser.org/

In the case you are using the ripple extension in Chrome you can then open the database located in:

C:\Users\User\AppData\Local\Google\Chrome\MY_USERNAME\Data\Default\databases\http_127.0.0.1_3000

The last folder depends on the url and the port you are accessing to your debugging app. Ex. http_localhost_3000 or http_127.0.0.1_3000

Beware that the Sqlite database created by ripple file has no extension, and has a filename like "6".

With this app I managed to browse and check data on my database in realtime, if you Insert or Edit data using this app be sure in pressing the button WRITE CHANGES, because ifnot this will make you phonegap app to crash.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文