首页 > 解决方案 > 为什么 mysql Insert 命令在 python 中对我不起作用?

问题描述

查询是正确的,但我不明白为什么它不能添加到我的数据库中。请帮帮我谢谢。我是初学者,我几乎无法调试这个。

    def callback(channel):
    print("\nflame detected\n")

GPIO.add_event_detect(channel, GPIO.BOTH, bouncetime=300)#pin if HIGH or LOW
GPIO.add_event_callback(channel, callback)       


while True:

    db = MySQLdb.connect(host="localhost", user="root", passwd="password", db="results")
    #create a cursor for the select
    cur = db.cursor()
    result = instance.read()
    if result.is_valid():
        print("Last valid input: " + str(datetime.datetime.now()))
        print("Temperature: %d C" % result.temperature)
        print("Temperature: %d F" % ((result.temperature*9/5)+32))
        print("Humidity: %d %%" % result.humidity)

        cel = str(result.temperature)
        far = str((result.temperature*9/5)+32)
        hum = str(result.humidity)
        fla = "No Flame"




    #execute an sql query
    sql = "INSERT INTO res(celsius,fahrenheit,humidity,flame) VALUES('"+cel+"','"+far+"','"+hum+"','"+fla+"')"
    cur.execute(sql)

        # close the cursor
    cur.close()

    # close the connection
    db.close ()
    time.sleep(1)

标签: pythonmysql

解决方案


你可以试试 ...

sql = "INSERT INTO res(celsius,fahrenheit,humidity,flame) VALUES(%s,%s,%s,%s)"
data = (cel, far, hum, fla)

指定需要值并使其更清晰,您也错过了db.commit()

cur.execute(sql, data)有了这个,你已经执行了命令,还将它的值传递给sql

然后你可以提交你的数据库。

db.commit()

然后关闭连接。


推荐阅读