pythonsqlalchemy

How to get number of affected rows in sqlalchemy?


I have one question concerning Python and the sqlalchemy module. What is the equivalent for cursor.rowcount in the sqlalchemy Python?


Solution

  • ResultProxy objects have a rowcount property as well.