aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_db2/connection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/connections/native_db2/connection.rb')
-rw-r--r--activerecord/test/connections/native_db2/connection.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/activerecord/test/connections/native_db2/connection.rb b/activerecord/test/connections/native_db2/connection.rb
new file mode 100644
index 0000000000..47f323945a
--- /dev/null
+++ b/activerecord/test/connections/native_db2/connection.rb
@@ -0,0 +1,24 @@
+print "Using native DB2\n"
+require 'fixtures/course'
+require 'logger'
+
+ActiveRecord::Base.logger = Logger.new("debug.log")
+
+db1 = 'arunit'
+db2 = 'arunit2'
+
+ActiveRecord::Base.establish_connection(
+ :adapter => "db2",
+ :host => "localhost",
+ :username => "arunit",
+ :password => "arunit",
+ :database => db1
+)
+
+Course.establish_connection(
+ :adapter => "db2",
+ :host => "localhost",
+ :username => "arunit2",
+ :password => "arunit2",
+ :database => db2
+)