[sqlalchemy] Re: limit=bindparam(result_limit)

2007-10-03 Thread Michael Bayer
ive added ticket # 805 for the LIMIT/OFFSET bind parameter feature. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to sqlalchemy@googlegroups.com To unsubscribe

[sqlalchemy] Re: limit=bindparam(result_limit)

2007-10-01 Thread dykang
I am trying to cut down on time the db spends compiling statements. Using bind params allows the query to look the same to the db, thus allowing it to not parse it again. It's the same use case that makes people want to use bind params anywhere. Am I missing something here? I'm a relative newbie

[sqlalchemy] Re: limit=bindparam(result_limit)

2007-10-01 Thread Michael Bayer
On Oct 1, 2007, at 8:35 PM, dykang wrote: I am trying to cut down on time the db spends compiling statements. Using bind params allows the query to look the same to the db, thus allowing it to not parse it again. It's the same use case that makes people want to use bind params anywhere.