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

2021/11/13 2:41:25

本文主要是介绍《错误记录——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。
————————————————————————————(꒦_꒦)



这篇关于《错误记录——SQL上传时错误。错误描述TypeError: not all arguments converted during string formatting的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程