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.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/test/connections/native_oracle/connection.rb b/activerecord/test/connections/native_oracle/connection.rb
index 01d86aba93..23e9f8f9c6 100644
--- a/activerecord/test/connections/native_oracle/connection.rb
+++ b/activerecord/test/connections/native_oracle/connection.rb
@@ -13,13 +13,13 @@ require 'logger'
ActiveRecord::Base.logger = Logger.new("debug.log")
# Set these to your database connection strings
-db = ENV['ARUNIT_DB_NAME'] = 'XE'
+db = ENV['ARUNIT_DB_NAME'] = 'orcl'
ActiveRecord::Base.configurations = {
'arunit' => {
:adapter => 'oracle_enhanced',
:database => db,
- :host => "arunit", # used just by JRuby to construct JDBC connect string
+ :host => "localhost", # used just by JRuby to construct JDBC connect string
:username => 'arunit',
:password => 'arunit',
:emulate_oracle_adapter => true
@@ -27,7 +27,7 @@ ActiveRecord::Base.configurations = {
'arunit2' => {
:adapter => 'oracle_enhanced',
:database => db,
- :host => "arunit", # used just by JRuby to construct JDBC connect string
+ :host => "localhost", # used just by JRuby to construct JDBC connect string
:username => 'arunit2',
:password => 'arunit2',
:emulate_oracle_adapter => true