我写了一个网络抓取脚本,保存到excel文件中,然后将这个excel文件上传到我的MySQL数据库服务器。我没有收到任何错误消息,但MySQL中的表是空的。为什么?我错了什么?
这里是mysqldb部分:
connection = MySQLdb.connect(host='localhost',
user='root',
passwd='',
db='database1')
cursor = connection.cursor()
query = """ load data local infile '/usr/src/Python-2.7.13/output.csv'
into table ARRIVALS
character set latin1
fields terminated by ';'
enclosed by '"'
lines terminated by '\r\n'
ignore 1 lines;
"""
cursor.execute(query)
connection.commit()
cursor.close()
time.sleep(30)
答案 0 :(得分:1)
如果您在linux中工作,并且该文件是在linux中编写的,则换行符应该是\ n而不是\ r \ n。这可能会导致您的文件被读取为单行,这将被忽略,如查询中所指定的那样