Does anyone know of a tool (like PHPMyAdmin or similar) that will allow me to view the HTML5 Web SQL databases within my browser?
有没有人知道允许我在浏览器中查看HTML5 Web SQL数据库的工具(如PHPMyAdmin或类似工具)?
2 个解决方案
#1
1
There are lots of SQLite browsers out there for various systems. I love SQLite Manager because it's just a plugin for Firefox. On my OSX Lion install the sqlite files are located here: /Users/my_name/Library/Application Support/Firefox/Profiles/1e3lwibu.default/
, but you can just do a search on your system for the location using the extension .sqlite
.
各种系统都有很多SQLite浏览器。我喜欢SQLite Manager,因为它只是Firefox的一个插件。在我的OSX Lion安装上,sqlite文件位于:/ Users / my_name / Library / Application Support / Firefox / Profiles / 1e3lwibu.default /,但您可以使用扩展名.sqlite在系统上搜索该位置。
#2
2
Developers tools (aka F12 tools) provided by Google Chrome browser is your best bet. In fact it helps you see not just web SQL databases but you can also see localStorage, sessionStorage, IndexedDB, cookies etc.
谷歌Chrome浏览器提供的开发人员工具(又名F12工具)是您最好的选择。事实上,它不仅可以帮助您查看Web SQL数据库,还可以查看localStorage,sessionStorage,IndexedDB,cookies等。
Here is the navigation path:
这是导航路径:
Google Chrome -> Press F12 -> Application tab -> Storage Node in left navigation bar -> Web SQL node -> <Database Name> node
More details on this is available here.
有关详细信息,请点击此处。
#1
1
There are lots of SQLite browsers out there for various systems. I love SQLite Manager because it's just a plugin for Firefox. On my OSX Lion install the sqlite files are located here: /Users/my_name/Library/Application Support/Firefox/Profiles/1e3lwibu.default/
, but you can just do a search on your system for the location using the extension .sqlite
.
各种系统都有很多SQLite浏览器。我喜欢SQLite Manager,因为它只是Firefox的一个插件。在我的OSX Lion安装上,sqlite文件位于:/ Users / my_name / Library / Application Support / Firefox / Profiles / 1e3lwibu.default /,但您可以使用扩展名.sqlite在系统上搜索该位置。
#2
2
Developers tools (aka F12 tools) provided by Google Chrome browser is your best bet. In fact it helps you see not just web SQL databases but you can also see localStorage, sessionStorage, IndexedDB, cookies etc.
谷歌Chrome浏览器提供的开发人员工具(又名F12工具)是您最好的选择。事实上,它不仅可以帮助您查看Web SQL数据库,还可以查看localStorage,sessionStorage,IndexedDB,cookies等。
Here is the navigation path:
这是导航路径:
Google Chrome -> Press F12 -> Application tab -> Storage Node in left navigation bar -> Web SQL node -> <Database Name> node
More details on this is available here.
有关详细信息,请点击此处。