使用 NetBeans 在 Ruby 中连接到 MySQL

发布于 2024-08-29 19:12:09 字数 393 浏览 4 评论 0原文

我已经下载了 dbd-mysql-0.4.4.zip 并将其链接到我的项目。当我尝试从 NetBeans 运行演示代码时,第一行(如下所示)给出了一个错误。有不同的方法吗?

require "dbi";

我还从命令提示符尝试了此命令:

jruby setup.rb config --with=dbi,dbd_mysql

它给了我以下错误:

config: unknown option --with=dbi,dbd_mysql  
Try ruby setup.rb --help for detailed usage.

请问有什么建议吗?

I've downloaded the dbd-mysql-0.4.4.zip and linked it to my project. While I try to run a demo code from NetBeans the very first line (shown below) gives me an error. Is there a different way to do it?

require "dbi";

I also tried this command from the command prompt:

jruby setup.rb config --with=dbi,dbd_mysql

It gave me the following error:

config: unknown option --with=dbi,dbd_mysql  
Try ruby setup.rb --help for detailed usage.

Any suggestions please?

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

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

发布评论

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

评论(1

陌路黄昏 2024-09-05 19:12:09

如果您使用jruby,则需要使用dbd-jdbc,因为dbd-mysql依赖于mysql本机扩展(编写为C) Matz 的 Ruby 解释器。

使用 ruby​​gems 安装它:jruby -S gem install dbi,并将 require 'rubygems' 添加为代码的第一行。

If you're working with jruby, you need to use dbd-jdbc, because dbd-mysql depends on mysql a native extension (written in C) for Matz' Ruby interpreter.

Install it using rubygems: jruby -S gem install dbi, and add require 'rubygems' as the first line of your code.

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