У меня есть хранимая процедура в mssql spGetRowRackInfo, я вызываю процедуру в моем приложении django (используя pyodbc)
Шаблон URL:
urlpatterns = [
path('ReportRacks/', views.ReportRacks, name="ReportRacks"),
]
Код:
id = request.GET["ID"]
Type = request.GET["Type"]
cursor = connection.cursor()
cursor.execute("{call dbo.spGetRowRackInfo(?,?)}", [id,Type])
получаю ошибку:
ERR sql = sql % tuple('?' * len(params))
ERR TypeError: not all arguments converted during string formatting
Как мне ее устранить?