我按照此处的说明将我的rails应用程序与Ubuntu 10.04上的SQL Server进行通信
http://wiki.github.com/rails-sqlserver/2000-2005-adapter/platform-installation-ubuntu-2
除了我尝试脚本/ sconsole时,所有测试记录都有通过 我能够在irb中建立数据库连接
在我的应用中,我有一个模型 Report.rb
class Report < ActiveRecord::Base
set_table_name "dbo.tvAllWorkstreams_Summary_AllReports_Sel"
end
在脚本/控制台中我得到以下内容
>>Report.count
NameError: uninitialized constant Report
from /usr/lib/ruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:443:in `load_missing_constant'
from /usr/lib/ruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:80:in `const_missing'
from /usr/lib/ruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:92:in `const_missing'
from (irb):1
这是我的配置:
连接到MS SQL Server 2000
的database.yml
发展: 适配器:sqlserver 模式:odbc dsn:生产 用户名:xxxx 密码:xxxx
在 environment.rb 中我添加了
config.gem'activerecord-sqlserver-adapter',:version =&gt; '2.3.8'
*本地宝石*
动作管理员(2.3.8)
actionpack(2.3.8)
activerecord(2.3.8)
activerecord-sqlserver-adapter(2.3.8)
activeresource(2.3.8)
activesupport(2.3.8)
机架(1.1.0)
导轨(2.3.8)
耙(0.8.7)
sqlite3-ruby(1.3.0)
我错过了什么?
答案 0 :(得分:0)
我不认为此错误与SqlServer适配器有任何关系,因为您将无法找到odbc错误或无法连接到数据源。它没有在这里看到报告模型。报告模型是app/models/report.rb
吗?当我是命名空间时忘记将命名空间放在模型名称之前,我有这个。
NameSpace::Report.count