[google-appengine] Re: How to search key word "c++" or "c#" from database using app engine?

2009-06-01 Thread Tudor Constantin
can't they be escaped with '\' like "c\+\+"? On Tue, Jun 2, 2009 at 7:00 AM, DiveIntoGAE wrote: > > when you search key word "c++" or "c#" from database ,you get > nothing.how can i solve this problem? > > code: > > query.filter('PROGLANG_USED =', language) > > > if the language=="c++", there wil

[google-appengine] Re: How to search key word "c++" or "c#" from database using app engine?

2009-06-02 Thread Sylvain
I've manually set C++ and C# in a StringProperty with the DataViewer and I can search for these values. Did you check the DataViewer for this entity ? So there is another issue I think. On 2 juin, 06:40, Tudor Constantin wrote: > can't they be escaped with '\' like "c\+\+"? > > > > On Tue, Jun

[google-appengine] Re: How to search key word "c++" or "c#" from database using app engine?

2009-06-02 Thread Nick Johnson (Google)
Hi, The datastore doesn't treat any values for string properties specially, including symbols. Your problem lies elsewhere - can you give us more detail? Perhaps you're using a TextProperty instead of a StringProperty? TextProperties are not indexed. -Nick Johnson On Mon, Jun 1, 2009 at 9:00 PM,