I\'m working on a Python script that writes records from a stored procedure to a text file. I\'m having issues executing the stored procedure with parameters.
I\'m n
This worked for me
query = "EXEC [store_proc_name] @param1='param1', @param2= 'param2'" cursor.execute(query)