我正在尝试执行相同的查询,但是使用不同的数据,但是我总是第一次获得数据。其他时间,尽管数据库中存在用于查询的数据,但mysql返回空数据。
这是代码:
def get_team_colour_map(self, players, id_competition):
tcm = FIBAColourMap()
for p in players:
args = [p["id"], id_competition]
conn = pymysql.Connect(host = DDBB.DDBB_FIBA_HOST,
user = DDBB.DDBB_FIBA_USER,
password = DDBB.DDBB_FIBA_PSWD,
db = DDBB.DDBB_FIBA_NAME,
charset = DDBB.DDBB_FIBA_CHARSET,
cursorclass=pymysql.cursors.DictCursor)
with conn.cursor() as cursor:
print("id player: {}".format(p["id"]))
print("args: {}".format(args))
cursor.execute("select sc.* from tbl030_shots_chart sc, tbl006_player_team pt, tbl007_game g, tbl004_jornada j, tbl012_competition c where pt.id = %s and pt.id_player_feb = sc.id_fiba and sc.id_game = g.id and g.id_jornada = j.id and j.id_competition = c.id and c.id = %s", args)
data = cursor.fetchall()
print("data: {}".format(data))
print("Total rows: {}".format(cursor.rowcount))
if cursor.rowcount > 0:
for s in data:
x = float(FIBASCReport.adjust_x(s["x"]))
y = float(FIBASCReport.adjust_y(s["y"]))
color = tcm.image.getpixel((x,y))
color = ("#%02x%02x%02x" % color).upper()
if tcm.exists_color(color):
if int(s["m"]) == 0:
tcm.set_scored_shots(color, 1)
else:
tcm.set_failed_shots(color, 1)
else:
if int(s["m"]) == 0:
tcm.set_scored_shots("OTROS", 1)
else:
tcm.set_failed_shots("OTROS", 1)
else:
#tcm = None
print("Jugadora con id: {} NO ha realizado ningún tiro en competición: {}".format(p["id"], id_competition))
return tcm
在此代码中,cursor.fetchall()在第一个查询中返回数据,但在下一个查询中返回空结果。
如何运行几个查询?我正在使用mySQL 8.0和Python 3.6
答案 0 :(得分:4)
这是因为您每次都使用相同的光标。每次循环执行查询时,创建一个新的游标实例。运行第一个查询后,游标已定位在所有数据之后。因此,此后没有返回行
您也可以尝试以下方法:
请参阅MySQLCursor.execute()的文档。
它声称您可以传入一个多参数,该参数允许您在一个字符串中运行多个查询。
如果将multi设置为True,则execute()能够执行操作字符串中指定的多个语句。
multi是execute()调用的可选第二个参数:
operation = 'SELECT 1; INSERT INTO t1 VALUES (); SELECT 2'
for result in cursor.execute(operation, multi=True):