Python MySQLdb插入问题

时间:2012-04-24 22:47:50

标签: python mysql exception mysql-python

我在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()

以下是我用于monitoring

的图书馆

这是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新手:)

提前致谢。

1 个答案:

答案 0 :(得分:1)

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

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