[sqlalchemy] Re: Generative queries in SA0.3 ?

2007-11-19 Thread Glauco
exhuma.twn ha scritto: I have seen that in SA 0.4 on can do something like: q = table.select() q = q.where(x=1) q = q.where(z=2) ... Is this also possible in SA 0.3? I want to build a web-page where a user can refine filters on the go, to perform a drill-down in a data set. Doing this

[sqlalchemy] Re: Generative queries in SA0.3 ?

2007-11-19 Thread exhuma.twn
On Nov 19, 12:41 pm, Glauco [EMAIL PROTECTED] wrote: exhuma.twn ha scritto: I have seen that in SA 0.4 on can do something like: q = table.select() q = q.where(x=1) q = q.where(z=2) ... Is this also possible in SA 0.3? I want to build a web-page where a user can refine

[sqlalchemy] Re: Generative queries in SA0.3 ?

2007-11-18 Thread Michael Bayer
On Nov 18, 2007, at 11:26 AM, exhuma.twn wrote: I have seen that in SA 0.4 on can do something like: q = table.select() q = q.where(x=1) q = q.where(z=2) ... Is this also possible in SA 0.3? 0.3. can build up selects by using methods such as append_whereclause(). but in 0.3 its not