Re: [Python-Dev] building sql queries in python

2006-03-30 Thread Greg Ewing
Thomas Wouters wrote: > > Have you looked at SqlObject? (and its associated modules > sqlobject.sqlbuilder in particular) > > SQLAlchemy (www.sqlalchemy.org ) is also > nice, in particular for more complex setups. > > There's plenty of ways to reliably and sa

Re: [Python-Dev] building sql queries in python

2006-03-30 Thread Oleg Broytmann
On Thu, Mar 30, 2006 at 12:09:51AM -0800, Gregory P. Smith wrote: > http://www.sqlobject.org/module-sqlobject.sqlbuilder.html This automatically generated doc concentrates on the interface instead of usage. SQLBuilder is really a capable and very pythonic SQL generator. But it has an issue - i

Re: [Python-Dev] building sql queries in python

2006-03-30 Thread Thomas Wouters
On 3/30/06, Gregory P. Smith <[EMAIL PROTECTED]> wrote: > Getting off on a tangent here, but I would actually> like some decent way of writing SQL queries in Python --> not for importing, but for database access.>> Constructing bits of SQL out of character strings > sucks *extremely* badly.Have you

Re: [Python-Dev] building sql queries in python

2006-03-30 Thread Gregory P. Smith
> Getting off on a tangent here, but I would actually > like some decent way of writing SQL queries in Python -- > not for importing, but for database access. > > Constructing bits of SQL out of character strings > sucks *extremely* badly. Have you looked at SqlObject? (and its associated module