up vote 6 down vote favorite
3
share [g+] share [fb]

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?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 14 down vote accepted
require "rubygems"
require "activerecord"
# Use the following line instead (without the comment hash) if you are using JRuby
#require "active_record"

#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|improve this answer
undefined method `require_gem' - you mean gem "activerecord"? – Daniel Cukier Oct 29 '09 at 14:10
2  
The require_gem call is deprecated. It should be require "activerecord" now. – kafuchau Oct 29 '09 at 14:13
@kchau: Oh, thanks. I haven't used it in quite some time. – Pesto Oct 29 '09 at 14:17
Another related question: how to have an environment sensible database.yml? – Daniel Cukier Oct 29 '09 at 15:42
feedback

It's worth noting that in later versions of activerecord (v3+) you need to require it like so

require "active_record"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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