Rails 串連 Oracle 資料庫

來源:互聯網
上載者:User

Rails 串連 Oracle 資料庫
準備工作:
1)安裝

ActiveRecord
Oracle adapter

sudo gem install activerecord-oracle-adapter --source http://gems.rubyonrails.org


2)
安裝 Oracle Client

http://www.oracle.com/technology/tech/oci/instantclient/index.html

在安裝過程可能會出錯,一般都會有提示,可能會執行下面步驟
 2.1)sudo ln -s libclntsh.dylib.10.1 libclntsh.dylib


 2.2)設定環境變數,Mac下可
在.profile增加

export DYLD_LIBRARY_PATH="/usr/local/oracle/instantclient_10_2"



3)
安裝ruby oracle驅動,要根據自己系統內容修改

sudo env DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH ARCHFLAGS="-arch x86_64" gem install ruby-oci8


安裝參考下面文章:

http://blog.rayapps.com/2009/09/06/how-to-setup-ruby-and-oracle-instant-client-on-snow-leopard/

項目需要Rails應用同時串連mysql與 Oracle DB,所以只要在config/database.yml檔案中修改配置:
下面的配置
一般預設情況使用'development'的配置,及串連sqlite3資料庫。

development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000

iisp:
adapter: oracle
encoding: utf8
database: 192.168.68.22/iisp.xjgz
username: iisp916
password: iisp916


其中iisp/database中,IP地址後面跟的是資料庫的Sid,不是資料庫名

model要串連
oracle時,在model中增加下面代碼:

establish_connection 'iisp'
self.table_name = 't_capacity'
self.sequence_name = 's_capacity' # 主鍵產生


設定
Rails串連Oracle的編碼:
config/environment.rb中增加下面代碼

ENV['NLS_LANG'] = 'AMERICAN_AMERICA.UTF8'


參考:http://wiki.rubyonrails.org/database-support/oracle

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.