我想在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")
答案 0 :(得分:2)
我不确定您使用的数据库,但我认为这应该可以胜任。
cursor.execute("call SP_YOUR_SP_NAME(params)")