download original
## 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 => "olaf",
:password => "mysqlpw",
:database => "tests"
)
back to tests
(C) 1998-2017 Olaf Klischat <olaf.klischat@gmail.com>