Re: [PHP] just going with LIKE

2005-05-04 Thread Richard Lynch
On Mon, May 2, 2005 12:22 pm, Ross said: Had a look at it and much easier to use LIKE with wildcards. Was unsure whether the query was case sensitive that is why I asked. As it turns out it is not. Actually, last time I checked, this was a COMPILE option to MySQL to be case sensitive or not

[PHP] just going with LIKE

2005-05-02 Thread Ross
Had a look at it and much easier to use LIKE with wildcards. Was unsure whether the query was case sensitive that is why I asked. As it turns out it is not. R -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] just going with LIKE

2005-05-02 Thread Marek Kilimajer
Ross wrote: Had a look at it and much easier to use LIKE with wildcards. Was unsure whether the query was case sensitive that is why I asked. As it turns out it is not. LIKE is case insensitive as well. Try casting to binary, this should work. -- PHP General Mailing List (http://www.php.net/) To