插入JSON对象时出现Python pymysql语法错误

时间:2017-04-04 08:40:21

标签: python mysql json pymysql

插入Python中使用的SQL数据库表时出现以下错误:

pymysql.err.ProgrammingError: (1064, 'You have an error in your SQL 
syntax; check the manual that corresponds to your MariaDB server 
version for the right syntax to use near \'"Black": {"b": "125.98", 
"a": "126.796", "L": "117.245"}, "Pink": {"b": "130.286\' at line 1')

SQL命令是:

json1 = json.dumps(meanLAB_vals_dict) # convert python dict to json string 
json2 = json.dumps(deltaE_dict)
sql_command = """INSERT INTO data_integrity_tool VALUES (%d, %d, %s, %s)""" %(i, image_id, json1, json2)

cursor.execute(sql_command)
connection.commit()

meanLAB_vals_dict 是:

{'Black': {'b': '125.98', 'a': '126.796', 'L': '117.245'}, 'Pink': 
{'b': '130.286', 'a': '180.918', 'L': '169.0'}, 'Green': {'b': 
'135.531', 'a': '103.51', 'L': '144.755'}, 'Violet': {'b': '109.878',
'a': '136.653', 'L': '122.02'}, 'Grey': {'b': '123.327', 'a': 
'125.612', 'L': '139.429'}, 'Yellow': {'b': '195.571', 'a': 
'112.612', 'L': '234.694'}, 'Red': {'b': '153.449', 'a': '177.918',
'L': '163.939'}, 'White': {'b': '128.02', 'a': '128.939', 'L': 
'243.878'}, 'Blue': {'b': '84.7551', 'a': '122.98', 'L': '163.673'}}

deltaE_dict 是:

{'Black': '38.5187', 'Pink': '38.6975', 'mean delta E': '28.0643', 
'Green': '42.6365', 'Violet': '35.5018', 'Grey': '19.8903', 'Yellow':
'24.5115', 'Red': '40.0078', 'White': '4.4993', 'Blue': '8.31544'}

虽然 i image_id 是两个整数(迭代的索引)。 以下是 data_integrity_tool 表:

sql_command = """CREATE TABLE IF NOT EXISTS data_integrity_tool (
                 id_              INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT,  
                 image_id         INTEGER NOT NULL,
                 mean_lab_values  TEXT,
                 delta_e_values   TEXT);"""

我知道已经存在一些类似的问题,但是,它们是针对 PHP 而且我不知道它,而且我在SQL中是全新的。

2 个答案:

答案 0 :(得分:1)

您似乎没有指定在sql查询中插入数据的字段名称。如果要插入json数据,也可以使用blob作为数据类型。这样更安全。也不要在插入查询中强制转换。

如果你考虑我的答案,那么你的sql语句应该是这样的。 表创建命令:

sql_command = """CREATE TABLE IF NOT EXISTS data_integrity_tool ( id_ INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT, image_id INTEGER NOT NULL, mean_lab_values BLOB, delta_e_values BLOB);"""

插入命令:

sql_command = """INSERT INTO data_integrity_tool(id_,image_id,mean_lab_values,delta_e_values) VALUES (%d, %d, %s, %s)""" %(i, image_id, json1, json2)

答案 1 :(得分:0)

这是答案(首先,JSON对象没有问题):

  1. 创建表格:

    sql_command = """CREATE TABLE IF NOT EXISTS data_integrity_tool (
                 id_              INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT,  
                 image_id         INTEGER NOT NULL,
                 mean_lab_values  TEXT COLLATE utf8_unicode_ci,
                 delta_e_values   TEXT COLLATE utf8_unicode_ci);"""
    
  2. SQL插入查询:

    json1 = json.dumps(meanLAB_vals_dict)
    json2 = json.dumps(deltaE_dict)
    
    sql_command = """INSERT INTO data_integrity_tool(id_, image_id,  
    mean_lab_values, delta_e_values) VALUES (%s, %s, %s, %s)""" 
    
    cursor.execute(sql_command, (i, image_id, json1, json2))
    
  3. 注意:

    • 在创建表格中,我将 COLLATE 添加到 utf8_unicode_ci 。如果你没有提到,默认是 latin1_swedish_ci 我不需要。
    • 在SQL插入查询中,sql_command不包含值,而是在执行功能期间提供它们。这避免了SQL Injection
    • 此外,在SQL插入查询中,始终对所有字段使用%s

    有趣的链接: