search for: lteq

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

Did you mean: lte
1998 Sep 28
0
adding math(s) symbols to src/main/plotmath.c
...ey don't seem to do any harm as is. *** plotmath.c.orig Fri Sep 25 17:21:33 1998 --- plotmath.c Fri Sep 25 17:46:57 1998 *************** *** 183,188 **** --- 183,232 ---- "psi", 121, "zeta", 122, + "therefore", 93, + "perp", 95, + + "lteq", 163, + "infinity", 165, + "clubsuit", 167, + "diamondsuit", 168, + "heartsuit", 169, + "spadesuit", 170, + "biarrow", 171, + "leftarrow", 172, + "uparrow", 173, + "rightarrow", 174, + &quot...
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