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 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 = 'INSERT INTO table(col1,col2) VALUES(:col1,col2)'
> params = {'col1':1,'col2':2} # and/or params [{'col1':1,'col2':2},
> {'col1':3,'col2':4}]
>
> etc..
>
> I've tried to figure out how to do this but every attempt has failed.
> If anyone wants to just point me to the point in the documentation
> that covers such use I would be greatly appreciative.
>
> >


--~--~---------~--~----~------------~-------~--~----~
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 from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to