I am pretty new to Ruby. One of our client is using Firebird as his
backend database. I have to create a script which will connect to his
database, fetch some data and update few tables in MS-SQL database.
Now problem is: i have installed FireRuby, got databaes, changed my
database.yml file.
I am trying to display all the users in Members table. but i am
getting following error:
ActiveRecord::AdapterNotFound in UsersController#index
The Firebird adapter requires FireRuby version 0.4.0 or greater; you
appear to be running an older version -- please update FireRuby (gem
install fireruby).
RAILS_ROOT: C:/rails/cprc/config/..
Application Trace | Framework Trace | Full Trace
I am pretty new to Ruby. One of our client is using Firebird as his
backend database. I have to create a script which will connect to his
database, fetch some data and update few tables in MS-SQL database.
Now problem is: i have installed FireRuby, got databaes, changed my
database.yml file.
I am trying to display all the users in Members table. but i am
getting following error:
ActiveRecord::AdapterNotFound in UsersController#index
The Firebird adapter requires FireRuby version 0.4.0 or greater; you
appear to be running an older version -- please update FireRuby (gem
install fireruby).
RAILS_ROOT: C:/rails/cprc/config/..
Application Trace | Framework Trace | Full Trace
but i have figured out the solution., I updated my environment.rb with
FIRERUBY_GEM_VERSION = '0.4.1' unless defined? FIRERUBY_GEM_VERSION
and it worked