mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
db045dbbf6
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
15 lines
489 B
Ruby
15 lines
489 B
Ruby
# 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"
|
|
)
|