2010-01-09 53 views

回答

3

Duplicate ? 如果不是:

class MyRubyClass < ActiveRecord::Base 
    def self.select_some_records 
     connection.select_all "exec mysql_stored_proc 'argument1', 'argument2'" 
    end 
end 

,使使用存儲過程看this

2

我會建議你做你的業務邏輯的軌道。

編寫你自己的查詢來在rails中執行很笨拙,容易出錯,而且不太可能移植到其他數據庫。

相關問題