[google-appengine] Re: about DB.Query Question

2008-12-08 Thread ivivian
thanks On Dec 8, 11:58 pm, Jeff S <[EMAIL PROTECTED]> wrote: > As the following article states, inequality filters (<, >, etc.) are > only allowed on one property in a query. You can have multiple > equality filters (=). It looks like you will need to change these > queries since you use fpx > an

[google-appengine] Re: about DB.Query Question

2008-12-08 Thread Jeff S
As the following article states, inequality filters (<, >, etc.) are only allowed on one property in a query. You can have multiple equality filters (=). It looks like you will need to change these queries since you use fpx > and ffpx <. http://code.google.com/appengine/docs/datastore/queriesandi

[google-appengine] Re: about DB.Query Question

2008-12-08 Thread kang
error message? On Mon, Dec 8, 2008 at 11:28 AM, ivivian <[EMAIL PROTECTED]> wrote: > > If the following statement, the normal: > users = db.Query(Users) > users.filter('fpx > ', getmin).filter('ffpx < ', getmax).filter('fpy = > ', '180').filter('fpy = ', '1') > > If the following statement, the e