ODBC Driver for Azure Active Directory

Build 22.0.8509

Executing Stored Procedures

The following code example shows how to execute stored procedures and retrieve their results.

Procedure for Calling Stored Procedures

The execute method can be used to call a stored procedure with the EXECUTE syntax, as described in EXECUTE Statements. As with Querying Data, the results will be available through the cursor.

cursor.execute("EXECUTE AddMember RoleId = 'id123456'")
for (result,) in cursor:
    print("result = ", result)

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8509