[google-appengine] Re: binding of parameters to GQL query: varargs + dictionary

2008-11-24 Thread Mahmoud
Have you seen GqlQuery.bind() ? http://code.google.com/appengine/docs/datastore/gqlqueryclass.html#GqlQuery_bind -Mahmoud On Nov 23, 4:47 pm, GAERiddler <[EMAIL PROTECTED]> wrote: > Hello, > > So I am not a Python programmer, though I am currently trying to pick > it up. > > My question is whet

[google-appengine] Re: binding of parameters to GQL query: varargs + dictionary

2008-11-24 Thread GAERiddler
Yes. But that accepts the same varargs as the .gql() method. What I think would be nice to have would be a bind(dictionary), and the dictionary object contains all the keyword-parameter bindings. On Nov 24, 9:50 am, Mahmoud <[EMAIL PROTECTED]> wrote: > Have you seen GqlQuery.bind() ? > > http:/

[google-appengine] Re: binding of parameters to GQL query: varargs + dictionary

2008-12-09 Thread Andy Freeman
> So I am not a Python programmer, though I am currently trying to pick it up. Look at the parameter passing stuff. .bind(**dictionary) does what you want. On Nov 24, 5:16 pm, GAERiddler <[EMAIL PROTECTED]> wrote: > Yes.  But that accepts the same varargs as the .gql() method. > > What I thin