thank you so much for this guys!
you rock...cant wait to try this tomorrow hehehe
On Aug 6, 10:08 pm, Hrishikesh Bakshi <
bakshi.hrishik...@gmail.com>
wrote:
> Basic MySQL Like functionality using Java
>
> Step 1: Fetch the whole table
>
> Step 2: For each row:
> query= query.toLowerCase();
> temp = dbname.getTablename().toLowercase
>
> if(temp.contains(query)){
> //do stuff...
>
> }
>
> Hope it helps..
>
> On Thu, Aug 6, 2009 at 3:21 PM, Barry Hunter <
barrybhun...@googlemail.com>wrote:
>
>
>
>
>
>
>
> > You cant do full 'like' capabilities, but can do basic 'startswith'
> > using the trick mentiond here:
>
> >
http://code.google.com/appengine/docs/python/datastore/queriesandinde...
>
> > Also have a look around for the various 'full text' search implementations.
>
> > For 'NOT' you do have != which will probably work with 'None' which is
> > close to a python equivalent of null. This will have to variable
> > subsituation rather than a string constant to put the 'none' there
> > though.
>
> > 2009/8/6 ssprauer <
stephane.spra...@gmail.com>: