Sha256: b51dc7e522169c24cbd7fe6aec61569da6ae2f88f7ea899d70b3899f0b5b91b1
Contents?: true
Size: 515 Bytes
Versions: 1
Compression:
Stored size: 515 Bytes
Contents
print "Using Oracle\n" require_dependency 'fixtures/course' require 'logger' ActiveRecord::Base.logger = Logger.new STDOUT ActiveRecord::Base.logger.level = Logger::WARN # Set these to your database connection strings db = 'activerecord_unit_tests' ActiveRecord::Base.establish_connection( :adapter => 'oracle', :username => 'arunit', :password => 'arunit', :database => db ) Course.establish_connection( :adapter => 'oracle', :username => 'arunit2', :password => 'arunit2', :database => db )
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-1.14.0 | test/connections/native_oracle/connection.rb |