aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_oci
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/connections/native_oci')
-rw-r--r--activerecord/test/connections/native_oci/connection.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/activerecord/test/connections/native_oci/connection.rb b/activerecord/test/connections/native_oci/connection.rb
deleted file mode 100644
index 0b1babb898..0000000000
--- a/activerecord/test/connections/native_oci/connection.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-print "Using OCI Oracle\n"
-require_dependency 'fixtures/course'
-require 'logger'
-
-ActiveRecord::Base.logger = Logger.new STDOUT
-ActiveRecord::Base.logger.level = Logger::WARN
-
-db1 = 'activerecord_unittest'
-db2 = 'activerecord_unittest2'
-
-ActiveRecord::Base.establish_connection(
- :adapter => 'oci',
- :host => '', # can use an oracle SID
- :username => 'arunit',
- :password => 'arunit',
- :database => db1
-)
-
-Course.establish_connection(
- :adapter => 'oci',
- :host => '', # can use an oracle SID
- :username => 'arunit2',
- :password => 'arunit2',
- :database => db2
-)