CData Python Connector for SuiteCRM

Build 25.0.9454

Calling Stored Procedures

You can execute stored procedures using either the execute() or callproc() method of the connection.

Calling Stored Procedures Using Execute()

When you call stored procedures by issuing EXECUTE commands, the stored procedure arguments are parameterized. For example:
cmd = "EXECUTE StoredProc Input1 = ?"
params = ["Value1"]
conn.execute(cmd, params)

Calling Stored Procedures Using Callproc()

When you call stored procedured by issuing the callproc() method, the stored procedure arguments are a procedure name and a list of parameters. For example:
cur = conn.cursor()
params = ["Value1"]
cur.callproc("StoredProc", params)

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9454