Is it possible to do SELECT * in sqlalchemy?
Edit: Specifically, SELECT * WHERE foo=1
|
Is it possible to do SELECT * in sqlalchemy? Edit: Specifically, SELECT * WHERE foo=1
| ||||
|
feedback
|
|
Is no one feeling the ORM love of SQLALchemy today? The presented answers correctly describe the lower level interface that SQLAlchemy provides. Just for completeness this is the more-likely (for me) real-world situation where you have a session instance and a User class that is orm mapped to the users table.
And this does an explicit select on all columns. | |||||||||
feedback
|
|
Where Bar is the class mapped to your table and session is your sa session:
| |||
|
feedback
|
|
If you don't list any columns, you get all of them.
Should work. | |||||
feedback
|