gpt4 book ai didi

mysql - 值不保存到 mysql 数据库中

转载 作者:行者123 更新时间:2023-11-29 15:30:43 25 4
gpt4 key购买 nike

我试图将值保存到数据库中,但是当尝试输入数据时,它没有出现在表中,并且显示了异常(exception)输出。

connection = mysql.connector.connect(
host = 'localhost',
user = 'root',
passwd = 'pswrd'
)
mycursor = connection.cursor()

mycursor.execute('USE test')

def save_results():
print('Please enter your first and last name...')
name = (input('Enter: '))

try:
mycursor.execute('USE test')
mycursor.execute("SELECT UserID FROM users WHERE (name) = ('" + name +"');")
mycursor.execute("INSERT INTO users (name) VALUES ('" + name + "');")
connection.commit()
print('s')
except:
print('ASDASD')

我希望输入出现在表格中。

最佳答案

这听起来可能很愚蠢,但是,您检查过密码是否正确吗?

关于mysql - 值不保存到 mysql 数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58755515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com