search for: cd_label

Displaying 2 results from an estimated 2 matches for "cd_label".

2006 Jul 22
3
Connection refused - connect(2)
Dear all, Please help me in this regards, I am using models to access LegacySchemas using set_table_name and set_primary_key... [code for model] class CdDetails < ActiveRecord::Base def self.find_data set_table_name ''cd_details'' set_primary_key ''cd_label'' find (:first, :select => "cd_label") end end [/code] and calling this in controllers like this, [code] class TestController < ApplicationController def view @cd_details = CdDetails.find_data end end [/code] my database configur...
2006 Jul 22
3
Doubts regarding Models
...f it is wrong. I am having a table with the name "cd_details". using models, I am accessing data from this. my model is having the code like this. model filename : cd_detail.rb -------- class CdDetail < ActiveRecord::Base def self.find_data find ( :all, :select => "id,cd_label" ) end end --------- I am using the able model in a controller like the following ---------- def bootable @cd_details= Cd_detail.find_data end ---------- If I run this code, it is saying the following error; ---------- uninitialized constant cd_detail. ---------- I want any one...