Sha256: 4d62cab2a58c89c870cc80f0aff1c65bc56d0dea168b1481d5a29bc29add82a7
Contents?: true
Size: 562 Bytes
Versions: 101
Compression:
Stored size: 562 Bytes
Contents
print "Using native DB2\n" require_dependency 'models/course' require 'logger' ActiveRecord::Base.logger = Logger.new("debug.log") ActiveRecord::Base.configurations = { 'arunit' => { :adapter => 'db2', :host => 'localhost', :username => 'arunit', :password => 'arunit', :database => 'arunit' }, 'arunit2' => { :adapter => 'db2', :host => 'localhost', :username => 'arunit', :password => 'arunit', :database => 'arunit2' } } ActiveRecord::Base.establish_connection 'arunit' Course.establish_connection 'arunit2'
Version data entries
101 entries across 98 versions & 20 rubygems