(已解决2019.8.8)Background on this error at: http://sqlalche.me/e/e3q8

向MySQL数据库存储数据,出现如下错误,Background on this error at: http://sqlalche.me/e/e3q8 ,

在这里插入图片描述
直接查询这个问题,没找到解决方案,仔细分析问题,向上查看,会发现:

The above exception was the direct cause of the following exception:

就是说,这个问题是上面问题导致的:

在这里插入图片描述

上面的问题是:MySQLdb._exceptions.OperationalError: (2013, 'Lost connection to MySQL server during query')

字面上看,意思是查询过程中丢失连接。

问题在于上传的数据太大了,找到my.ini配置文件,在mysqld下添加

max_allowed_packet= 500M

问题解决。


  • Reference

  1. 解决Lost connection to MySQL server during query错误方法

你可能感兴趣的:(#,小白学Python,#,SQL,HDF,Mongo,Python)