mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
daf3e92a31
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@303 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
24 lines
471 B
Ruby
24 lines
471 B
Ruby
print "Using native DB2\n"
|
|
require 'fixtures/course'
|
|
require 'logger'
|
|
|
|
ActiveRecord::Base.logger = Logger.new("debug.log")
|
|
|
|
db1 = 'arunit'
|
|
db2 = 'arunit2'
|
|
|
|
ActiveRecord::Base.establish_connection(
|
|
:adapter => "db2",
|
|
:host => "localhost",
|
|
:username => "arunit",
|
|
:password => "arunit",
|
|
:database => db1
|
|
)
|
|
|
|
Course.establish_connection(
|
|
:adapter => "db2",
|
|
:host => "localhost",
|
|
:username => "arunit2",
|
|
:password => "arunit2",
|
|
:database => db2
|
|
)
|