I am giving Pylons a try with SQLAlchemy, and I love it, there is just one thing, is it possible to print out the raw SQL CREATE TABLE data generated from Table().create() before it's executed?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
SQLAlchemy is designed in such a way that doesn't allow echoing generated DDL statements without actually executing them. AFAIK, SQLAlchemy Migrate use mock engine to catch statements without executing when --preview_sql option is used, so using it is one way to solve your problem. |
|||
|
If you are using declarative syntax:
|
|||
|
|
|
Something like this? http://www.sqlalchemy.org/trac/wiki/FAQ#HowcanIgettheCREATETABLEDROPTABLEoutputasastring |
|||
|
|
|
I needed to get the raw table sql in order to setup tests for some existing models. Here's a successful unit test that I created for SQLAlchemy 0.7.4 based on Antoine's answer as proof of concept:
|
|||
|
|
|
May be you mean /tmp$ cat test_s.py
/tmp$ python test_s.py
|
|||
|
|