django-pyodbc 和调用存储过程

django-pyodbc and calling a stored procedure

我正在 Windows 10 上测试我的代码。我有一个 Django 应用程序需要调用远程 SQL 服务器数据库上的存储过程。这是来自 settings.py 的数据库片段:

DATABASES = {
'default': {
    'ENGINE': 'django.db.backends.mysql',
    'NAME': 'db1',
    'HOST': 'mycompany.com',
    'PORT': '3306',
    'USER': 'user',
    'PASSWORD': 'pw',
},
'ss': {
    'ENGINE': 'django_pyodbc',
    'NAME': 'db2',
    'HOST': 'myserver\SQLEXPRESS',
    'USER': 'myuser',
    'PASSWORD': 'mypw',
    'PORT': '1433',
    # 'DRIVER': 'SQL Server',
    'OPTIONS': {
        'driver_supports_utf8': True,
        'host_is_server': True,  # must be True for remote db
        'autocommit': True,
        'unicode_results': True,
        'extra_params': 'tds_version=8.0',
    },
},

}

这是我认为的代码片段:

    cursor = connections['ss'].cursor()
    cursor.execute("{call dbo.mysproc(?)}", (id))

当我执行 cursor.execute 语句时出现此错误:

django.db.utils.DatabaseError: ('The SQL contains 1 parameter markers, but 36 parameters were supplied', 'HY000')

我的参数 id 是一个 GUID。 想法?

修复方法如下,只需将参数周围的括号更改为方括号即可:

cursor.execute("{call dbo.mysproc(?)}", [id])

这是我通过反复试验发现的。