gpt4 book ai didi

python - python 中 mySQL 的最后一个值(查询)

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

尝试从 Raspberry Pi 上的 MySQL 获取最后一个值。不知道为什么我的简单代码不起作用,在 row =cursor.fetchone() 处的“execute() first”处给出错误。

这是我的代码:

# External module imports
import time
import os
import datetime
import MySQLdb

# Connect to mysql
db=MySQLdb.connect("localhost","zikmir","gforce","temp_database")
# Prepair a cursor
cursor=db.cursor()

# Select three columns, id, time and temp from table time_temp
cursor.execute = ("SELECT id, time, temp FROM time_temp")
# ID is autoincremented value, time is in TIME and temp is float

row = cursor.fetchone()
# Trying to store the last result in variable row

# Close cursor and database
cursor.close()
db.close()

最佳答案

观察cursor.execute = ("SELECT id, time, temp FROM time_temp")中的=。它应该是 cursor.execute("SELECT...")

关于python - python 中 mySQL 的最后一个值(查询),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43701985/

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