Guest User

Untitled

a guest
Feb 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #Oracle Config Example for the MRI/ActiveRecord
  2.  
  3. ActiveRecord:: Base.establish_connection(
  4. :adapter => "oracle",
  5. :database => "10.0.1.22/se",
  6. :username => "prep",
  7. :password => "prep"
  8. )
  9.  
  10. #Oracle config example for JRuby/ActiveRecord-JDBC
  11.  
  12. ActiveRecord:: Base.establish_connection(
  13. :adapter => "oracle",
  14. :host => "10.0.1.22",
  15. :database => "xe",
  16. :username => "prep",
  17. :password => "prep"
  18. )
Add Comment
Please, Sign In to add comment