Sha256: 097baebf0414ae10445b807ac3d8d3e0c7d2dd889c25e14a41cd947727e65fb0

Contents?: true

Size: 545 Bytes

Versions: 7

Compression:

Stored size: 545 Bytes

Contents

print "Using native PostgreSQL\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  => "postgresql",
  :username => "postgres",
  :password => "postgres", 
  :database => db1,
  :min_messages => "warning"
)

Course.establish_connection(
  :adapter  => "postgresql",
  :username => "postgres",
  :password => "postgres", 
  :database => db2,
  :min_messages => "warning"
)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
activerecord-1.14.3 test/connections/native_postgresql/connection.rb
activerecord-1.14.1 test/connections/native_postgresql/connection.rb
activerecord-1.14.2 test/connections/native_postgresql/connection.rb
activerecord-1.14.0 test/connections/native_postgresql/connection.rb
activerecord-1.13.1 test/connections/native_postgresql/connection.rb
activerecord-1.13.2 test/connections/native_postgresql/connection.rb
activerecord-1.14.4 test/connections/native_postgresql/connection.rb