Hi,
I don't get why SQL does not like my query:
@unreadmessages = Message.find(:all, :conditions => ["receiver_id = ? AND receiver_archived = ? AND read = ?", self.current_user, "No", "No"])
There is a different way to write this, but I want to keep my style consistent (this one avoids SQL injections, I gather.).
Thanks for your input!