Archive for the ‘Oracle’ Category

Oracle Mix: First Public JRuby on Rails is Launched

Wednesday, November 14th, 2007

Oracle Mix is a joint effort between the folks at Thoughtworks and Oracle to provide a community for Oracle clients to exchange ideas and network with each other and Oracle.

Connecting to Oracle from Rails

Wednesday, August 1st, 2007

Since there are several variations of docs on this (some of which are out of date) I figured I'd document this.

  1. Download and install the Ruby interface from http://rubyforge.org/projects/ruby-oci8/
  2. Then, in your config/database.yml file, you should have something like this:
development:
   adapter: oracle
   database: <your-sid-here>
   host: //<your-host-here>:<your-port-here>
   username: <your-username-here>
   password: <your-password-here>

If you're running Rails with JRuby you should have the Oracle JDBC drivers in the classpath and the entry above will be a little different:

common: &shared
   adapter: jdbc
   driver: oracle.jdbc.driver.OracleDriver
   url: jdbc:oracle:thin:@<your-host-here>:<your-port-here>:<your-sid-here>
   username: <your-username-here>
   password: <your-password-here>

# oracle (JDBC)
development:
   <<: *shared


Fox Holes

  • You are currently browsing the archives for the Oracle category.

Rabbit Holes

Chasms