2

我想将我的 rails 3 应用程序连接到 firebird 数据库。我已关注

https://help.ubuntu.com/community/Firebird2.5

http://mapopa.blogspot.in/2009/02/rails-on-firebird-status-after-adapter.html

链接。此外,我已将 gem 'activerecord-fb-adapter' 和 gem 'fb' 包含到 gemfile 中。

但是,我收到“没有建立 Firebird 连接”的响应。

同时运行 rake db:create 结果

 {:adapter=>"fb",
  :database=>"localhost/3050:/var/lib/firebird/2.5/data/rubyonfire.fdb",
  :username=>"SYSDBA",
  :password=>"*******",
  :host=>"localhost",
  :downcase_names=>true}

 {:adapter=>"fb",
  :database=>"localhost/3050:/var/lib/firebird/2.5/data/rubyonfire_test.fdb",
  :username=>"SYSDBA",
  :password=>"*******",
  :host=>"localhost",
  :downcase_names=>true}

非常感谢任何帮助。

提前致谢。

4

1 回答 1

4

在 database.yml 中添加create: true解决了这个问题。有关详细信息,请参阅以下链接:-

https://github.com/rowland/activerecord-fb-adapter/issues/1#issuecomment-6608210

谢谢

于 2012-06-28T06:46:17.530 回答