是否有_ANY_方法从 XULRunner/Firefox 插件连接到 mysql 服务器?

发布于 2024-11-10 00:22:39 字数 217 浏览 0 评论 0原文

如何从 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 技术交流群。

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

发布评论

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

评论(1

烏雲後面有陽光 2024-11-17 00:22:39

您可以尝试在较新版本的 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.

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