我下面的 python 代码有什么问题?
我想连接到我的数据库,选择一些信息。这些在列表列表中,我抓取列表并执行“select..from..where..IN”:
import pypyodbc
connection = pypyodbc.connect('Driver={SQL Server};'
'Server=X;'
'Database=Y;'
'uid=X;pwd=Y')
cursor = connection.cursor()
NbFiche=0
L=[[4702, 3095, 3543], [2040, 2030, 2020], []]
for i in range(0,3):
log=L[i]
if (log is not None):
if (len(log)==3):
SQLCommand = ("select count(*) from PRODUCTION where ID_TV IN (?) ")
cursor.execute(SQLCommand,(log,))
results = cursor.fetchone()
NbFiche += results[0]
这是错误:
Traceback (most recent call last):
File "//Srvaktct-bur02/telecontact/TCT TRAVAIL/Pôle Fichier/AMIRA/STATISTIQUES/nimp.py", line 18, in <module>
cursor.execute(SQLCommand,(log,))
File "C:\Users\admin_fichier\AppData\Local\Programs\Python\Python35\lib\site-packages\pypyodbc-1.3.3-py3.5.egg\pypyodbc.py", line 1470, in execute
self._BindParams(param_types)
File "C:\Users\admin_fichier\AppData\Local\Programs\Python\Python35\lib\site-packages\pypyodbc-1.3.3-py3.5.egg\pypyodbc.py", line 1275, in _BindParams
if param_types[col_num][0] == 'u':
TypeError: 'type' object is not subscriptable
新代码(编辑):
import pypyodbc
connection = pypyodbc.connect('Driver={SQL Server};'
'Server=x;'
'Database=y;'
'uid=x;pwd=y')
cursor = connection.cursor()
NbFiche=0
L=[[4702, 3095, 3543], [2040, 2030, 2020]]
for log in L:
log=tuple(log) # I also tried with a list
SQLCommand = ("select count(*) from PRODUCTION where ID_TV IN (?) ")
cursor.execute(SQLCommand,(log,))
results = cursor.fetchone()
NbFiche += results[0]
编辑 :
import pypyodbc
connection = pypyodbc.connect('Driver={SQL Server};'
'Server=x;'
'Database=y;'
'uid=x;pwd=y')
cursor = connection.cursor()
NbFiche=0
L=[[4702, 3095], [2040, 2030, 2020]]
for log in L:
SQLCommand = ("select count(*) from PRODUCTION where ID_TV IN (?)")
params = ','.join(map(str,log))
cursor.execute(SQLCommand,params)
results = cursor.fetchone()
NbFiche += results[0]
结果如下:
Traceback (most recent call last):
File "//Srvaktct-bur02/telecontact/TCT TRAVAIL/Pôle Fichier/AMIRA/STATISTIQUES/nimp.py", line 13, in <module>
cursor.execute(SQLCommand,params)
File "C:\Users\admin_fichier\AppData\Local\Programs\Python\Python35\lib\site-packages\pypyodbc-1.3.3-py3.5.egg\pypyodbc.py", line 1454, in execute
raise TypeError("Params must be in a list, tuple, or Row")
TypeError: Params must be in a list, tuple, or Row