[sqlalchemy] Re: Vanilla parameterized query and results

2008-11-18 Thread Empty
Hi, On Tue, Nov 18, 2008 at 9:39 PM, TheShadow [EMAIL PROTECTED] wrote: All I need to be able to do is the following. (I don't need, can't use, and/or don't want ORM) query = 'SELECT col FROM table where col = :col' params = {'col':1} # and/or params = [{'col':1},{'col':2}] OR query =

[sqlalchemy] Re: Vanilla parameterized query and results

2008-11-18 Thread Michael Bayer
Providing great utility with no ORM whatsoever is one of our core values. That's why if you dont import sqlalchemy.orm, theres no ORM. A full overview of SQLAlchemy components is at: http://www.sqlalchemy.org/docs/05/intro.html On Nov 18, 2008, at 9:39 PM, TheShadow wrote: All I need