sql报错收集

踩坑记录:

当出现如下错误

  Not enough parameters for the SQL statement

  多半是因为插入时填写的字段名有误

  json.decoder.JSONDecodeError: Extra data: line 1 column 362730 (char 362729)

  这样情况是因为解析json时数据格式不对

  Python type list cannot be converted  或者  Python type tuple cannot be converted

  在批量导入sql时json数据中含有不能解析的数据,比如tuple内容里有list

  Not all parameters were used in the SQL statement

  当看到这个问题,很可能是你添加的数据字段长短不一,例如添加29个字段数据结果是30个

  Not enough parameters for the SQL statement

  这个是因为参数不足,检查sql语句的values

  

  local variable 'sql' referenced before assignment

sql语句的插入内容为空

原文地址:https://www.cnblogs.com/1314h/p/13828724.html