《错误记录——SQL上传时错误。错误描述TypeError: not all arguments converted during string formatting

本次错误2021年11月11日出现,出现在爬虫上传本地数据库中。错误无大问题。
首先是问题描述

shangchuan.sjk(title, url_use, time_use, synopsis, category, category_web, label, picture, alternative, picture_seqencing, web_seqencing, time_seqencing, hot_seqencing, soure, soure_icon, soure_url)
File “D:\DAWN\pachong\redian\the day is same\mokuai_shangchuan\shangchuan.py”, line 36, in sjk
cursor.execute(sql, value)
File “E:\python\lib\site-packages\pymysql\cursors.py”, line 146, in execute
query = self.mogrify(query, args)
File “E:\python\lib\site-packages\pymysql\cursors.py”, line 125, in mogrify
query = query % self._escape_args(args, conn)
TypeError: not all arguments converted during string formatting

出现正则错误,只因上传部分**

sql = """INSERT IGNORE  INTO  zixun_bendi (biaoti,lianjie,shijian,jianjie,leibie,leibie_wangzhan,biaoqian,tupian,beixuan,tupian_xuwei,wangzhan_xuwei,shijian_xuwei,redu_xuwei,laiyuan,laiyuantu,laiyuanurl  ) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)"""
        cursor.execute(sql, value)
        conn.commit()
        

后面的%s部分少了一个%s。
————————————————————————————(꒦_꒦)

上一篇:Oracle存储过程中EXECUTE IMMEDIATE用法


下一篇:Android 多线程应用