非WEB程序中使用Active Record_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > 非WEB程序中使用Active Record

非WEB程序中使用Active Record

 2011/10/19 8:05:06  jsntghf  http://2015.iteye.com  我要评论(0)
  • 摘要:一、新建一个Ruby文件require"rubygems"require"active_record"ActiveRecord::Base.establish_connection(:adapter=>"oracle",:database=>"test_development",:username=>"root",:password=>"root",:host=>"localhost")classEntry<ActiveRecord:
  • 标签:程序 Web 使用 web程序

一、新建一个Ruby文件

?

require "rubygems" 
require "active_record" 

ActiveRecord::Base.establish_connection(:adapter => "oracle", :database => "test_development", :username => "root", :password => "root", :host => "localhost")  
   
class Entry < ActiveRecord::Base  
    
end 

entry = Entry.find(1)  
puts entry.title # Good Life with happy heart

?

二、Rails项目根目录中新建一个Ruby文件

?

require "../config/environment.rb" 

entry = Entry.find(1)  
puts entry.title # Good Life with happy heart

?

发表评论
用户名: 匿名