vote up 4 vote down star
3

I have a small ruby script in which I'd like to use ActiveRecord to easily access a database model. What is the best way to do it?

flag

79% accept rate

1 Answer

vote up 10 vote down check
require "rubygems"
require "activerecord"

#Change this to reflect your database settings
ActiveRecord::Base.establish_connection (
  :adapter => "mysql",
  :host => "localhost",
  :username => "root",
  :password => "password",
  :database => "some_database")

#Now define your classes from the database as always
class SomeClass < ActiveRecord::Base
  #blah, blah, blah
end

#Now do stuff with it
some_class = SomeClass.new
some_other_stuff = SomeClass.find :all
link|flag
undefined method `require_gem' - you mean gem "activerecord"? – Daniel Cukier Oct 29 at 14:10
2  
The require_gem call is deprecated. It should be require "activerecord" now. – kchau Oct 29 at 14:13
@kchau: Oh, thanks. I haven't used it in quite some time. – Pesto Oct 29 at 14:17
Another related question: how to have an environment sensible database.yml? – Daniel Cukier Oct 29 at 15:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.