如果在Debian 9上运行下面的代码,则没有任何反应。没有错误消息,只是运行我的代码,但是当我想打开数据表时,它是空的。在Windows 7中,我总是得到好结果。
这里我的代码哪个部分给了我这个空结果..(但是我的"创建表"部分运行良好)。
connection = MySQLdb.connect(host='localhost',
user='root',
passwd='1234',
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()
为什么Debain无法执行代码?