python MySQL Code Error 1064,War
2019-11-19 本文已影响0人
布口袋_天晴了
MySQL 1064错误排除
插入字段有特殊字符,如:单双引号问题。
方法:
import pymysql
text = pymysql.escape_string(your_text))
Note: To see complete list of warning(s), enable Tools -> Preferences -> General -> Show Warning(s) in Messages Tab
Execution Time : 0.031 sec
Transfer Time : 0 sec
Total Time : 0.031 sec
Warning Code : 1265
Data truncated for column 'location' at row 1
原来是location字段设置的长度太短了,插入的数据被自动截断了