Execute an SQL Statement (No Parameters, No Result Rows) ======================================================== Execute an SQL statement that takes no parameters and returns no rows. For example SQL to CREATE or DROP a table, view, or index. Or to SET an isolation level or other session attribute. .. NOTE:: ``asyncio`` is used in this example but it is not essential. To use busy-wait loops instead, see :ref:`asynchronous-functions`. .. IMPORTANT:: :attr:`!qy_queryType` must be set to :attr:`py.IIAPI_QT_QUERY` to indicate which protocol the OpenAPI must expect. :download:`Download <./examples/exec-sql.py>` .. LITERALINCLUDE:: ./examples/exec-sql.py :linenos: :download:`Download <./examples/exec-sql.py>`