如何在python代码中使用带有参数的存储过程

时间:2013-04-12 04:14:45

标签: python sql-server pyodbc

我想在python代码中使用存储过程,如下所示。

import pyodbc
conn = pyodbc.connect('Trusted_Connection=yes', driver = '{SQL Server}',
                      server = 'ZAMAN\SQLEXPRESS', database = 'foy3') 

def InsertUser(studentID,name,surname,birth,address,telephone):
    cursor = conn.cursor()
    cursor.execute("exec InserttoDB studentID,name,surname,birth,address,telephone")
    rows = cursor.fetchall()

我在代码的一部分下面遇到了问题。如何使用InserttoDB(存储过程)将函数参数发送到DB

cursor.execute("exec InserttoDB studentID,name,surname,birth,address,telephone")

1 个答案:

答案 0 :(得分:2)

我不确定您使用的数据库,但我认为这应该可以胜任。

cursor.execute("call SP_YOUR_SP_NAME(params)")