Skip to content

Instantly share code, notes, and snippets.

@axsuul
Forked from anonymous/search function
Created January 25, 2012 19:31
Show Gist options
  • Save axsuul/1678074 to your computer and use it in GitHub Desktop.
Save axsuul/1678074 to your computer and use it in GitHub Desktop.
syntax error
class Student < ActiveRecord::Base
def self.search(query)
find(:all, :conditions => ['student_name LIKE ?', "%#{query}%"]) || []
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment