aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/connections/native_sqlserver/connection.rb
blob: 626a72b8d7b03f157f6f23522e31b8899497d896 (plain) (tree)
1
2
3
4
5
6
                                
                                    



                                                   













                                         
 

                                                
print "Using native SQLServer\n"
require_dependency 'fixtures/course'
require 'logger'

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

ActiveRecord::Base.configurations = {
  'arunit' => {
    :adapter  => 'sqlserver',
    :host     => 'localhost',
    :username => 'sa',
    :database => 'activerecord_unittest'
  },
  'arunit2' => {
    :adapter  => 'sqlserver',
    :host     => 'localhost',
    :username => 'sa',
    :database => 'activerecord_unittest2'
  }
}

ActiveRecord::Base.establish_connection 'arunit'
Course.establish_connection 'arunit2'