我将使用游标对象将下面的这个 url 保存到我的 mysql 数据库(innodb)中:
http://www-i6.informatik.rwth-aachen.de/publications/download/367/l {o}{o}fjonasbisanimaximiliangollanchrisianheigoldgeorghoffmeisterbj{o}rnplahlchristianschl{u}terralfneyhermann--the2006{rwth}parliamentaryspeechestranscriptionsystem--2006.pdf
查询语句是
dbquery = "INSERT INTO maintable (url,state) VALUES (%s,%s)"
dbqueryvalue = (url,'0')
The cursor.execute(dbquery,dbqueryvalue)
错误:
_mysql_exceptions.Warning:第 1 行的“url”列的数据被截断
其他 url 似乎还可以,但在这个上无法保存。