Python mysql错误#1064

时间:2015-03-19 13:15:11

标签: python mysql mysql-error-1064

我正在尝试通过编写管道将数据存储到MySQL中,但它会发生:

  

_mysql_exceptions.ProgrammingError:(1064,“您的SQL语法中有错误;请查看与您的MySQL服务器版本对应的手册,以便在'desc,pic附近使用正确的语法)值('xe4 \ xbe \ x9b \ xe5 \ xba .......'在第1行“)

这是我的代码:

def __init__(self):
    #self.file = codecs.open('tutorial_data.json','wb',encoding='utf-8')
    self.dbpool = adbapi.ConnectionPool('MySQLdb',
                                        host = 'localhost',
                                        port = 3306,
                                        db = 'project',
                                        user = 'root',
                                        passwd = '',
                                        cursorclass = MySQLdb.cursors.DictCursor,
                                        charset = 'utf8',
                                        use_unicode = True)
def process_item(self, item, spider):
    query = self.dbpool.runInteraction(self._conditional_insert, item)
    query.addErrback(self.handle_error)
    return item

def _conditional_insert(self,tx,item):

        tx.execute(
        "INSERT INTO raw (title,area,date,sclass,desc,pic )\ 
         VALUES (%s, %s, %s, %s, %s, %s)",

               (item['title'][0],
                item['area'][0],
                item['date'][0],
                item['sclass'][0],
                item['desc'][0],
                item['pic'][0])
                )    

我的MySQL版本是5.6.17,而mysql-python版本是1.2.5_

1 个答案:

答案 0 :(得分:1)

DESCreserved keyword in MySQL。如果您要命名列标识符DESC,则必须将其包装在刻度线中:

 tx.execute(
    "INSERT INTO raw (title,area,date,sclass,`desc`,pic )\ 
     VALUES (%s, %s, %s, %s, %s, %s)",

然而,更好的解决方案是不使用保留关键字作为列标识符,因为它可能会导致其他地方出现混淆和潜在错误(加上完整的单词"说明"更清晰,并使更易于维护的代码)。

 tx.execute(
    "INSERT INTO raw (title,area,date,sclass,description,pic )\ 
     VALUES (%s, %s, %s, %s, %s, %s)",