I am about to save the url below to my mysql database (innodb) using the cursor object:
http://www-i6.informatik.rwth-aachen.de/publications/download/367/l {o}{o}fjonasbisanimaximiliangollanchrisianheigoldgeorghoffmeisterbj{o}rnplahlchristianschl{u}terralfneyhermann--the2006{rwth}parliamentaryspeechestranscriptionsystem--2006.pdf the insert statement is dbquery = "INSERT INTO maintable (url,state) VALUES (%s,%s)" dbqueryvalue = (url,'0') The cursor.execute(dbquery,dbqueryvalue) error: _mysql_exceptions.Warning: Data truncated for column 'url' at row 1 Other urls seem to be OK, but on this one cannot be saved.The url field can save up to 255 characters so the string length is not the problem. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.

