如何在python中动态生成mysql ON DUPLICATE UPDATE

问题描述 投票:0回答:1

我试图在给定csv文件的情况下动态生成MySQL插入/更新查询。 我有一个csv文件hobbies.csv:

id,name,hobby
"1","rick","coding"
"2","mike","programming"
"3","tim","debugging"

然后我有2个函数:1来生成查询,1来更新数据库:

generate_SQL.朋友

from connect_to_database import read_db_config
from config_parser import read_csv_files
from update_db import insert_records
import csv

def generate_mysql_queries():
    csv_file_list, table_list, temp_val, temp_key, temp_table, reader, header, data, data_list = ([] for i in range(9))
    val_param = '%s'
    query = ''
    total_queries = 0
    db = read_db_config(filename='config.ini', section='mysql')
    csv_file_dict = read_csv_files(filename='config.ini', section='data')
    for key, value in csv_file_dict.items():
        temp_val = [value]
        temp_key = [key]
        csv_file_list.append(temp_val)
        table_list.append(temp_key)
    for index, files in enumerate(csv_file_list):
        with open("".join(files), 'r') as f:
            reader = csv.reader(f)
            header.append(next(reader))
            data.append([row for row in reader])
            for d in range(len(data[index])):
                val_param_subs = ','.join((val_param,) * len(data[index][d]))
                total_queries += 1
                query = """INSERT INTO """ + str(db['database']) + """.""" + """""".join('{0}'.format(t) for t in table_list[index]) + \
                        """(""" + """, """.join('{0}'.format(h) for h in header[index]) + """) VALUES (%s)""" % val_param_subs + \
                        """ ON DUPLICATE KEY UPDATE """ + """=%s, """.join(header[index]) + """=%s"""
                data_list.append(data[index][d])
            insert_records(query, data_list)

然后我将查询和数据传递给update_db.py中的insert_records():

from mysql.connector import MySQLConnection, Error
from connect_to_database import read_db_config


def insert_records(query, data):
    query_string = query
    data_tuple = tuple(data)
    try:
        db_config = read_db_config(filename='config.ini', section='mysql')
        conn = MySQLConnection(**db_config)
        cursor = conn.cursor()
        cursor.executemany(query, data_tuple)
        print("\tExecuted!")
        conn.commit()
    except Error as e:
        print('\n\tError:', e)
        print("\n\tNot Executed!")
    finally:
        cursor.close()
        conn.close()

传递给cursor.executemany(query,data_string)的数据如下所示(查询是字符串,data_tuple是元组):

query: INSERT INTO test.hobbies(id, name, hobby) VALUES (%s,%s,%s) ON DUPLICATE KEY UPDATE id=%s, name=%s, hobby=%s
data_tuple: (['1', 'rick', 'coding'], ['2', 'mike', 'programming'], ['3', 'tim', 'debugging'])

鉴于这两个参数,我收到以下错误:

错误:1064(42000):您的SQL语法中有错误;检查与您的MariaDB服务器版本对应的手册,以便在第1行'%s,name =%s,hobby =%s'附近使用正确的语法

我尝试通过发送没有'%s'参数的完整字符串非动态地传递相同的字符串,它工作正常。我错过了什么?任何帮助深表感谢。

python mysql csv
1个回答
0
投票

可能是在python中使用三重双引号。当你使用它

query = """INSERT INTO """ + str(db['database']) + """.""" + """""".join('{0}'.format(t) for t in table_list[index]) + \
                    """(""" + """, """.join('{0}'.format(h) for h in header[index]) + """) VALUES (%s)""" % val_param_subs + \
                    """ ON DUPLICATE KEY UPDATE """ + """=%s, """.join(header[index]) + """=%s"""

你对python说,一切都是包含%s的字符串。

© www.soinside.com 2019 - 2024. All rights reserved.