aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples/shared_setup.rb
blob: 6ede4b1d35501c6cc4284006a7ddebc645646b4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Be sure to change the mysql_connection details and create a database for the example

$: << File.dirname(__FILE__) + '/../lib'

require 'active_record'
require 'logger'; class Logger; def format_message(severity, timestamp, msg, progname) "#{msg}\n" end; end

ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Base.establish_connection(
  :adapter  => "mysql", 
  :host     => "localhost", 
  :username => "root", 
  :password => "", 
  :database => "activerecord_examples"
)