是否有_ANY_方法从 XULRunner/Firefox 插件连接到 mysql 服务器?
如何从 Firefox 插件连接到 MySQL 服务器?有没有办法直接连接mysql服务器?
我已经尝试过:
- 包“MySQLXPCOM”不再处于活跃开发/过时的
- 包“mozdb”未运行
- jar文件的执行(从附加组件内),mysql连接器运行不正确
我不想创建PHP脚本执行命令。
有什么想法吗?
How to connect to a MySQL Server from a Firefox add-on? Is there a way to connect directly to a mysql server?
I have tried:
- package "MySQLXPCOM" is no longer under active development/outdated
- package "mozdb" is not running
- execution of jar file (from within the add-on) with mysql connector runs not correctly
I do not want to create a PHP script which executes the commands.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在较新版本的 Firefox 中使用对 js-ctypes 的内置支持:
https:// developer.mozilla.org/en/js-ctypes
js-ctypes,就像 Python ctypes 一样,让您绑定到本机 C 库。您可以尝试创建一小组到本机 MySQL 库的绑定。
You could try using the built-in support for js-ctypes in newer versions of Firefox:
https://developer.mozilla.org/en/js-ctypes
js-ctypes, like the Python ctypes, let's you bind to native C libraries. You could try to create a small set of bindings to the native MySQL library.