我正在尝试使用 Python 和 SQLite 更新我的用户详细信息。
目的是一次性升级我用户的所有列。
我的代码是:
def update():
new_username = input("Input your NEW username:\n")
new_firstname = input("Input your NEW firstname:\n")
new_lastname = input("Input your NEW lastname:\n")
new_email = input("Input your NEW email:\n")
new_password = input("Input your NEW password:\n")
update_customer =("""UPDATE customer SET username = ? AND firstname = ? AND lastname = ? AND email = ? AND password = ?""")
cursor.execute(update_customer, [(new_username), (new_firstname), (new_lastname), (new_email), (new_password)])
我在运行 python 函数之前和之后检查了数据库。但是,更改不会保存到数据库中。除了消失的用户名外,没有任何变化。
largeQ
汪汪一只猫
相关分类