I need to call a SqlServer stored procedure
from python2.7
via pyodbc
module with input parameter name.
I tried based on documentation by input parameter order:
cursor.execute('{CALL [SP_NAME](?,?)}',
('value', 'value'))
It works, but I need to pass parameter name of stored procedure
because order of stored procedure input parameter always changes. So I need to pass them by name.
cursor.execute('{CALL [SP_NAME](@param1name,@param2name)}',
('value', 'value'))
However this doesn't work. What's the correct syntax?
I tested this using the following stored procedure in SQL Server 2008 R2:
The Bad News ("CALL")
I found that
gave inconsistent results.
With the
{SQL Server Native Client 10.0}
ODBC driver it ignored the parameter names and treated the parameters as positional, yielding ...... and with the older
{SQL Server}
ODBC driver I just got the errorThe Good News ("EXEC")
I found that
gave me the following (correct) result using both ODBC drivers