python 操作mysql 增,删,改无效
python 在操作mysql,进行增,删,改时,需要在执行SQL语句之后,执行db.commit,提交修改,SQL语句才能真正生效。如下:
cursor.execute("DELETE from test where id = %s" % (id)) db.commit()
python 在操作mysql,进行增,删,改时,需要在执行SQL语句之后,执行db.commit,提交修改,SQL语句才能真正生效。如下:
cursor.execute("DELETE from test where id = %s" % (id)) db.commit()