user3418487
user3418487

Reputation: 1

how to connect remote oracle database using Ruby?

I am trying to write code to connect remote oracle database using Ruby? Can any one help me in this?

Upvotes: 0

Views: 735

Answers (1)

wadesworld
wadesworld

Reputation: 13733

The OCI8 gem is what you want:

https://github.com/kubo/ruby-oci8

You will obviously also need an Oracle client installed. If you don't already have one, the Oracle Instant Client would be recommended.

Upvotes: 1

Related Questions