使用 NetBeans 在 Ruby 中连接到 MySQL
我已经下载了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用jruby,则需要使用
dbd-jdbc
,因为dbd-mysql
依赖于mysql
本机扩展(编写为C) Matz 的 Ruby 解释器。使用 rubygems 安装它:
jruby -S gem install dbi
,并将require 'rubygems'
添加为代码的第一行。If you're working with jruby, you need to use
dbd-jdbc
, becausedbd-mysql
depends onmysql
a native extension (written in C) for Matz' Ruby interpreter.Install it using rubygems:
jruby -S gem install dbi
, and addrequire 'rubygems'
as the first line of your code.