GAE does allow

rows = db(db.buyer.name>="C")(db.buyer.name<"D").select()|
db(db.buyer.name>="c")(db.buyer.name<"d").select()

If you want to sort cap independent

rows=rows.sort(lambda row: row.name.upper())

On Jun 5, 9:24 am, Matthew <[email protected]> wrote:
> Right, which is why this syntax is used:
>
> rows = db(buyer.id>0).select().find(lambda
> row:row.name.startswith('C'))
>
> I was just wondering how efficient this really is since it grabs the
> whole table. I'm going to try it on GAE, I was just wondering if
> anyone else had yet.
>
> On Jun 4, 2:21 am, Álvaro Justen <[email protected]> wrote:
>
> > On Fri, Jun 4, 2010 at 02:36, Vasile Ermicioi <[email protected]> wrote:
> > > I think GAE doesn't support like
>
> > Ouch, I forgot this. Excuse me for that.
>
> > --
> > Álvaro Justen - Turicas
> >  http://blog.justen.eng.br/
> >  21 9898-0141

Reply via email to