aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_oracle/connection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/connections/native_oracle/connection.rb')
-rw-r--r--activerecord/test/connections/native_oracle/connection.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/activerecord/test/connections/native_oracle/connection.rb b/activerecord/test/connections/native_oracle/connection.rb
new file mode 100644
index 0000000000..095fe9d5ee
--- /dev/null
+++ b/activerecord/test/connections/native_oracle/connection.rb
@@ -0,0 +1,23 @@
+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
+)