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