Re: [sqlalchemy] Dropping all tables + more

2012-12-21 Thread Russell Warren
On Fri, Dec 14, 2012 at 11:18 PM, Michael Bayer mike...@zzzcomputing.comwrote: Nothing has changed regarding that recipe and I just ran it on a small set of tables against Postgresql (which I can see is the DB you're using) and it runs fine. Are you sure the identical schema *does* drop

Re: [sqlalchemy] Dropping all tables + more

2012-12-14 Thread Russ
I have just updated SQLAlchemy from 0.7.8 to 0.8.0b2 (the current pip default) and the DropEverythinghttp://www.sqlalchemy.org/trac/wiki/UsageRecipes/DropEverythingrecipe has stopped working. The problem is on the DropTable line with this error : sqlalchemy.exc.InternalError: (InternalError)

Re: [sqlalchemy] Dropping all tables + more

2012-12-14 Thread Michael Bayer
Nothing has changed regarding that recipe and I just ran it on a small set of tables against Postgresql (which I can see is the DB you're using) and it runs fine. Are you sure the identical schema *does* drop completely when this recipe is run directly with 0.7.8 ?Can you provide the

Re: [sqlalchemy] Dropping all tables + more

2011-09-24 Thread Russell Warren
I should have mentioned that in my first post... it worked fine as-is for me with absolutely no circular reference problem. On Fri, Sep 23, 2011 at 10:53 PM, Michael Bayer mike...@zzzcomputing.comwrote: On Sep 23, 2011, at 1:35 PM, Russ wrote: Is the DropEverything recipe still the best way

[sqlalchemy] Dropping all tables + more

2011-09-23 Thread Russ
Is the DropEverything recipe still the best way to drop everything via SQLAlchemy? http://www.sqlalchemy.org/trac/wiki/UsageRecipes/DropEverything The recipe is ancient (almost a year old! :) ) and I just want to check if there is a better way now. How I got here (for searchability)... When

Re: [sqlalchemy] Dropping all tables + more

2011-09-23 Thread Michael Bayer
On Sep 23, 2011, at 1:35 PM, Russ wrote: Is the DropEverything recipe still the best way to drop everything via SQLAlchemy? http://www.sqlalchemy.org/trac/wiki/UsageRecipes/DropEverything The recipe is ancient (almost a year old! :) ) and I just want to check if there is a better way