search for: cddetail

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

Did you mean: cd_detail
2006 Jul 22
3
Doubts regarding Models
...wing things are right or wrong, in the first place. Then to know the right way to do the same, if 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 say...
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]...