当使用"以"终止的行时,在Debian上插入MySQL失败

时间:2017-08-28 11:55:02

标签: python linux debian mysql-python

如果在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无法执行代码?

0 个答案:

没有答案