使用LOAD_FILE插入到mysql中为该字段插入null

时间:2018-05-26 20:45:16

标签: mysql python-3.x

enter image description here我有以下用python编写的代码,id是一个自动增量字段,sample的数据类型是nvarchar(45)。我想将文件的内容插入到我的表中;数据是非结构化的:

db = MySQLdb.connect("localhost", "root", "Mydatabases#0", "myblog")
cursor = db.cursor()
cursor.execute("insert into mytable (id,sample) values (DEFAULT ,LOAD_FILE('C:/Discharge_Summary/sample_648.txt'))")
db.commit()
db.close()

我没有看到任何错误,但是当我从我的表中选择*时,我看到样本字段为空!为什么它无法将文件内容加载到MySql中?

屏幕截图显示我拥有所有必需的权限......

0 个答案:

没有答案