aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_firebird/connection.rb
blob: b7d47940f78be80e40e753bd614ed2161cca5669 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
print "Using native Firebird\n"
require_dependency 'fixtures/course'
require 'logger'

ActiveRecord::Base.logger = Logger.new("debug.log")

db1 = 'activerecord_unittest'
db2 = 'activerecord_unittest2'

ActiveRecord::Base.establish_connection(
  :adapter  => "firebird",
  :host     => "localhost",
  :username => "rails",
  :password => "rails",
  :database => db1,
  :charset  => "UTF8"
)

Course.establish_connection(
  :adapter  => "firebird",
  :host     => "localhost",
  :username => "rails",
  :password => "rails",
  :database => db2
)