Byg rubin, ædelsten og skinner
i henhold til http://rubyonrails.org/download:
build ruby
build gem
use gem to install rails
Få Oracle Instantclient
Download fra https://www.oracle.com/technetwork/database/database-technologies/instant-client/downloads/index.html
Du skal bruge disse to pakker til din arkitektur.
instantclient-basic
instantclient-sdk
Udpak disse filer, og lav dette link
cd instantclient_10_2
# .dylib for mac, .so for linux
ln -s libclntsh.dylib.10.1 libclntsh.dylib
Byg ruby-oci8
Bemærk, JRuby-brugere har ikke brug for ruby-oci8, men har brug for Oracle JDBC-krukken, enten ojdbc6.jar eller ojdbc5.jar, afhængigt af om du har Java 6 eller Java 5.
Download fra http://ruby-oci8.rubyforge.org/en/index.html og kør
# DYLD for mac
export DYLD_LIBRARY_PATH=/path/to/instantclient_10_2
# LD for linux
export LD_LIBRARY_PATH=/path/to/instantclient_10_2
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
Test med denne linje og din databaseforbindelsesstreng.
ruby -r oci8 -e "OCI8.new('scott/[email protected]').exec('select * from user_tables') do |r| puts r.join(','); end"
Installer activerecord-oracle_enhanced-adapter
Bemærk, ikke activrecord-oracle-adapter som mange ældre sider nævner.
gem install activerecord-oracle_enhanced-adapter
Gør det med søde rails
rails railstest
cd railstest
# edit config/database.yml as below
ruby script/generate scaffold comic title:string issue:integer publisher:string
rake db:migrate
ruby script/server
Test i browser
<http://localhost:3000/comics>
config/database.yml
Brug database hvis du har en TNS-post, ellers brug host . Bemærk, at du har tre poster (udvikle, test, produktion) at opdatere.
development:
adapter: oracle_enhanced
database: orcl # format is tns-name entry
host: myorclhost/orcl # format is hostname/instance-name
username: scott
password: tiger
Referencer
- http://emphaticsolutions.com/2008/05/22/connecting-to-oracle-from-ruby-on-rails.html
- http://www.oracle.com/technology/pub/articles/saternos-ror-faq.html
- http://drawohara.com/post/37166893/rails-unsucking-oci-oracle-on-rails-2-1
- http://www.oracle.com/technology/pub/articles/haefel-oracle-ruby.html