Displaying 1 result from an estimated 1 matches for "cntnew".
2006 May 12
2
Problem regarding accessing attributes from object...
...umber between double quotes (3) which is of my
interest & I want to display it. How to do that?
Actually this is my method:-
====================================
class Tagging < ActiveRecord::Base
def self.find_count_of_tag(tag_name)
find_by_sql([
"SELECT count(*) as cntnew FROM taggings " +
"WHERE taggings.tag_id = (SELECT tags.id from tags where
tags.name=
''food'')"
])
end
end
====================================
Now this is code in my view:-
@cnt=@cnt=Tagging.find_count_of_tag(''food'...