MySQL 从 csv 文件插入

MySQL insert from a csv file

我有一个要加载到数据库中的 csv 文件,但似乎无法将一行作为插入函数的值

for row in readCSV:

    cur.execute("INSERT INTO IPaddresses(Start) VALUES(row[0])")

我使用模块pymysql

不确定您为什么不使用 "load data [local] infile"。这会容易得多。在此处查看命令:http://dev.mysql.com/doc/refman/5.0/en/load-data.html and someone with a similar problem here Python/MySQL - LOAD DATA LOCAL INFILE

当您 运行 代码时究竟会发生什么?错误? table?

中的意外值