class documentation

class ExecuteStyle(Enum): (source)

View In Hierarchy

indicates the :term:`DBAPI` cursor method that will be used to invoke a statement.

Constant EXECUTE indicates cursor.execute() will be used
Constant EXECUTEMANY indicates cursor.executemany() will be used.
Constant INSERTMANYVALUES indicates cursor.execute() will be used with an INSERT where the VALUES expression will be expanded to accommodate for multiple parameter sets

indicates cursor.execute() will be used

Value
0
EXECUTEMANY: int = (source)

indicates cursor.executemany() will be used.

Value
1
INSERTMANYVALUES: int = (source)

indicates cursor.execute() will be used with an INSERT where the VALUES expression will be expanded to accommodate for multiple parameter sets .. seealso:: :ref:`engine_insertmanyvalues`

Value
2