gpt4 book ai didi

python 连接未将数据保存在数据库中

转载 作者:行者123 更新时间:2023-11-29 10:12:13 27 4
gpt4 key购买 nike

我已成功连接到Python中的数据库,但它没有保存我提供的数据。这是代码:

    try:
connection = MySQLdb.connect(host="localhost",user="root",passwd="",db="traffic_alert")
except Exception as e:
print('Not connected')


cursor = connection.cursor()
cursor.execute("insert into data (main_status,extracted_info,time) values (%s,%s,%s)",[sentence,final_result,time])
print(sentence)
print(final_result)
print(time)

它可以成功打印句子、final_result 和时间,但不将它们保存在数据库中。句子、final_result 和时间少于 50 个字符。我已经在 mysql 中手动创建了数据库,其中包含以下行:

id -> auto_increment,pk
main_status -> varchar(255)
extracted_info -> varchar(255)
seen -> int(10),Null=True
time ->varchar(255)

最佳答案

connection.commit()

之后光标.执行

关于python 连接未将数据保存在数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50784439/

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