在 Rails 中使用 DBI
我正在使用 Rails 3.0.0.rc 并在我的 gemfile 中安装了“dbi”gem 并运行了捆绑安装。但是当我执行以下要求时,它返回“没有要加载的此类文件 - dbi”的错误,
require 'dbi'
我做错了什么?我使用了错误的宝石吗?请帮忙。
I'm using Rails 3.0.0.rc and have installed the 'dbi' gem inside my gemfile and ran bundle install. But when I do the following require, it returns an error of 'no such file to load -- dbi'
require 'dbi'
What am I doing wrong? Am I using the wrong gem? Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦 gem 进入 Gemfile,您就不必再需要它了。
You shouldn't have to require the gem once it's in your Gemfile.