0

我正在用 Python 编写一个简单的应用程序,它将监视我的 cpu 和 ram 的使用情况并将其放入 MySQL 数据库中以供将来处理这是我的代码:

import MySQLdb
import psutil


connection = MySQLdb.connect(host="localhost", port=8888, user="root", passwd="root", db="monitoring", unix_socket="/Applications/MAMP/tmp/mysql/mysql.sock")
c = connection.cursor()

while True:

    usage = psutil.cpu_percent(interval=1)

    c.execute("INSERT INTO cpu (usage) VALUES (%s)", (usage))

    c.execute("SELECT * FROM cpu")
    print c.fetchall()

这是我用于监控的库

这是 MySQL 数据库的转储:

    --
-- Table structure for table `cpu`
--

    CREATE TABLE `cpu` (
      `id` int(12) NOT NULL AUTO_INCREMENT,
      `usage` float NOT NULL,
      `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=2 ;

但是,在进行 INSERT 时我无法修复此错误:

_mysql_exceptions.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'usage) VALUES (12.9)' at line 1")

有什么提示可以解决这个问题吗?对不起,但我是 Python 新手 :)

提前致谢。

4

1 回答 1

1

这不是 Python 问题。问题是这usage是 MySQL 中的保留字。您应该将列的名称更改为其他名称,或者使用反引号在代码中引用它:

c.execute("INSERT INTO cpu (`usage`) VALUES (%s)", (usage))
于 2012-04-24T22:59:40.703 回答