[sqlalchemy] any tips on balancing between performance and ease of use?

2011-09-01 Thread Krishnakant Mane
hello all, I am thinking of programming a lot of stored procedures for my postgresql based application. I would like to know if using the expression API is a way that can give me the power of sqlalchemy's eas and comfort, at the same time make use of the performance bennifits I will get from

Re: [sqlalchemy] any tips on balancing between performance and ease of use?

2011-09-01 Thread Michael Bayer
I have some interest in working out ways to integrate stored procedures with SQLAlchemy though at the moment the points of integration are very rudimental. You can invoke a stored procedure, get results, and also create a selectable that would define the columns that come back from one

Re: [sqlalchemy] any tips on balancing between performance and ease of use?

2011-09-01 Thread Krishnakant Mane
Thanks a lot. On 01/09/11 19:16, Michael Bayer wrote: I have some interest in working out ways to integrate stored procedures with SQLAlchemy though at the moment the points of integration are very rudimental.You can invoke a stored procedure, get results, and also create a selectable