sqlite3.OperationalError: unrecognized token: ":"

前端之家收集整理的这篇文章主要介绍了sqlite3.OperationalError: unrecognized token: ":"前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

sqlite3插入数据表时,出现的错误sqlite3.OperationalError: unrecognized token: ":"

解决方法

插入的字符串需加引号'

conn.execute("insert into %s values(%d,' %s ','')" % (table_name,i,url))

原因:

conn.execute('create table if not exists %s(id integer primary key,url varchar(255),comment varchar(128))' % table_nam e) 我建的表第二个字段是字符串,写的时候直接用了%s,没有加''导致出错。

原文链接:https://www.f2er.com/sqlite/202613.html

猜你在找的Sqlite相关文章