in 2.0, we are usually not returning CursorResult for
Session.execute().
References: #12813
Change-Id: I19049b57790b5429ce7890c86e87b93c07a3f1d2
(cherry picked from commit
e2bda66b5115cc628ebce9423877586c9e817feb)
specific to the DBAPI ``cursor`` object. An instance of this subclass is
returned when a statement is invoked via the
:meth:`_engine.Connection.execute` method. When using the ORM, the
- :meth:`_orm.Session.execute` method returns an object of this type for
- all INSERT, UPDATE, and DELETE statements.
+ :meth:`_orm.Session.execute` method will normally **not** return this type
+ of object, unless the given query uses only Core :class:`.Table` objects
+ directly.
Facts about :attr:`_engine.CursorResult.rowcount`: