Re: [SQLObject] Paramaterized queryAll...

2009-08-18 Thread Frank Wagner
I absolutely second that! I'd love to see parameterized queries in SQLObject, but am unfortunately not a skilled enough programmer to do this kind of work ... Frank 2009/8/16 Sam's Lists > Oleg > > I'm not sure I'm the one to do the merge, you wrote the code, and you seem > to know more

Re: [SQLObject] Paramaterized queryAll...

2009-08-15 Thread Sam's Lists
Oleg I'm not sure I'm the one to do the merge, you wrote the code, and you seem to know more about SQLObject than anyone else in the world, including I'd guess Ian at this point. But it does seem like a really cool, and important feature. So if you do decide to merge it at some point, thank

Re: [SQLObject] Paramaterized queryAll...

2009-08-15 Thread Oleg Broytmann
On Fri, Aug 14, 2009 at 10:19:23PM -0700, Sam's Lists wrote: > QueryAll and QueryOne work okay with strings. > > But I'd like to be able to pass parameterized queries to them. Am I correct > that this is not supported? What are my options? > > I.e. something like this: > > queryAll('select * f

[SQLObject] Paramaterized queryAll...

2009-08-14 Thread Sam's Lists
QueryAll and QueryOne work okay with strings. But I'd like to be able to pass parameterized queries to them. Am I correct that this is not supported? What are my options? I.e. something like this: queryAll('select * from stocks where symbol=?', (symbol,)) (My actual queries are much more comp