如何使用不同的数据多次执行相同的查询?

问题描述 投票:0回答:1

我正在尝试执行相同的查询,但使用不同的数据,但我总是第一次获取数据。其他时候,在数据库中有查询数据,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

python mysql python-3.x pymysql
1个回答
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):
© www.soinside.com 2019 - 2024. All rights reserved.