views:

20

answers:

2

Hi,

Is it possible to have the postgres database dump(pg_dump) using SQLAlchemy? i can get the dump using pg_dump but I am doing all other db operations using SQLALchemy and thus want to know if this dump operation is also opssible using SQLAlchemy. Any suggestion, link would be of great help.

Thanks, Tara Singh

+1  A: 

pg_dump is a system command.so I do not think you could have postgres database dump using SQLAlchemy.

tinychen
Thanks for your answer tinychen. Is there any other ORM which can help doing this ?
Tara Singh