gpt4 book ai didi

Python:在 rasb pi 上将数据从 python 写入 mysql

转载 作者:行者123 更新时间:2023-11-29 03:22:37 25 4
gpt4 key购买 nike

我不熟悉 python 以及在 Raspberry Pi 上编码。我正在从传感器读取数据并尝试将其存储在 MySQL 中。我设法设置了 MySQL 并创建了一个表,并手动使用 INSERT INTO 命令来测试数据是否被正确推送并且它似乎工作正常。我在表中设置了两个 FLOAT 列。

我的问题是当我编写 python 程序来做同样的事情时,它只存储数值而不是实际包含实时传感器数据的变量中的值。例如,如果我用 python 编写:

sql = "INSERT INTO temp VALUES(12,temperature)"
cursor.execute(sql)
db.commit()

在 MySQL 中它会显示:

+-------------------+
| 12 | NULL |
+-------------------+

如您所见,值 12 已存储,但变量 temperature 中的值显示为 NULL。我尝试打印温度变量中的值以查看数据,它显示得很好,所以我确定变量温度具有正确的值。我真的不明白为什么我的 python 脚本不会将 variable 的数据发送到 MySQL。

此外,我没有在第一列中键入 12,而是尝试创建一个变量 I=I+1,这样它会在每次循环运行时递增,然后我在两列中得到相同的 NULL 值。这是完整的代码:

import time
import os
import MySQLdb
# Connect to MySQL
db=MySQLdb.connect("localhost","zikmir","gforce","temprecords")
cursor=db.cursor()
i=0
while True:
# Open the file that we viewed earlier so that python can see what is in it. Replace the serial number as before.
tfile = open("/sys/bus/w1/devices/10-000802824e58/w1_slave")
# Read all of the text in the file.
text = tfile.read()
# Close the file now that the text has been read.
tfile.close()
# Split the text with new lines (\n) and select the second line.
secondline = text.split("\n")[1]
# Split the line into words, referring to the spaces, and select the 10th word (counting from 0).
temperaturedata = secondline.split(" ")[9]
# The first two characters are "t=", so get rid of those and convert the temperature from a string to a number.
temperature = float(temperaturedata[2:])
# Put the decimal point in the right place and display it.
temperature = temperature / 1000
# Display Iteration and Temperature
print i, temperature
i=i+1
# Push data into SQL
sql = "INSERT INTO temp VALUES (i,temperature)"
cursor.execute (sql)
db.commit()
# Wait 5 seconds
time.sleep(5)

任何帮助将不胜感激!

最佳答案

虽然这可以像其他答案一样通过字符串连接或字符串格式化来完成,但同样的方法是:

temperature = temperature / 1000   
sql = "INSERT INTO temp VALUES (i,%s)"
cursor.execute(sql, (temperature,))

这是为了避免称为 SQL 注入(inject)的现象。有关其他信息,请参阅:https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-execute.html

关于Python:在 rasb pi 上将数据从 python 写入 mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41414049/

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