Oracle - old revision restored

Using Oracle with Rails

Creating a new application

To create a new Rails application that uses the Oracle adapter:

$ rails -d oracle my_rails_app

Next, edit config/database.yml with the proper settings.

database.yml example

development:
adapter: oracle
username: scott
password: tiger
database: database_name
timeout: 5000