我正在尝试从字典中获取数据(该示例为了可读性而简化)并将其插入到mysql数据库中。 我有以下代码。
import pymysql
conn = pymysql.connect(server, user , password, "db")
cur = conn.cursor()
ORFs={'E7': '562', 'E6': '83', 'E1': '865', 'E2': '2756 '}
table="genome"
cols = ORFs.keys()
vals = ORFs.values()
sql = "INSERT INTO %s (%s) VALUES(%s)" % (
table, ",".join(cols), ",".join(vals))
print sql
print ORFs.values()
cur.execute(sql, ORFs.values())
cur.close()
conn.close()
print sql
语句返回
INSERT INTO genome (E7,E6,E1,E2) VALUES(562,83,865,2756 )
当我直接在mysql命令行中键入它时,mysql命令有效。但是当我运行python脚本时,我收到一个错误:
<type 'exceptions.TypeError'>: not all arguments converted during string formatting
args = ('not all arguments converted during string formatting',)
message = 'not all arguments converted during string formatting'
与往常一样,任何建议都将受到高度赞赏。
答案 0 :(得分:1)
sql = "INSERT INTO %s (%s) VALUES(%s)" % (
table, ",".join(cols), ",".join(vals))
此SQL包含值,cur.execute(sql, ORFs.values())
也包含值。
所以,它应该是cur.execute(sql)
。
答案 1 :(得分:0)
上一个答案不适用于非字典字典值。这是修订版。
format_string = ','.join(['%s'] * len(dict))
self.db.set("""INSERT IGNORE INTO listings ({0}) VALUES ({1})""".format(", ".join(dict.keys()),format_string),
(dict.values()))
答案 2 :(得分:0)
就我而言,我将跳过空列。
data = {'k': 'v'}
fs = ','.join(list(map(lambda x: '`' + x + '`', [*data.keys()])))
vs = ','.join(list(map(lambda x: '%(' + x + ')s', [*data.keys()])))
sql = "INSERT INTO `%s` (%s) VALUES (%s)" % (table, fs, vs)
count = cursor.execute(sql, data)