search for: gteq

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

Did you mean: gte
1998 Sep 28
0
adding math(s) symbols to src/main/plotmath.c
...it", 168, + "heartsuit", 169, + "spadesuit", 170, + "biarrow", 171, + "leftarrow", 172, + "uparrow", 173, + "rightarrow", 174, + "downarrow", 175, + "degree", 176, + "plusminus", 177, + "gteq", 179, + "times", 180, + "propto", 181, + "partial", 182, + "bullet", 183, + "divide", 184, + "notequal", 185, + "equiv", 186, + "approx", 187, + "ellipsis", 188, + "aleph", 192, + &q...
2012 Feb 21
10
Search of multiple columns
I am currently writing a search method for my rails applications and at the moment it works fine. I have the following in my game.rb: def self.search(search) if search find(:all, :conditions => [''game_name LIKE ? OR genre LIKE ? OR console LIKE ?'', "%#{search}%", "#{search}", "#{search}"]) else find(:all) end end No that searches