标签: python sqlite python-3.4
我有多个列表,我想将列表中存储的数据插入到sqlite数据库中。
我的插入声明是: c.executemany(“INSERT INTO admin(class,level,registerNo,ic,name)VALUES(?,?,?,?,?)”,(sclass,level,registerNo,ic,name))
但是我的错误说明: sqlite3.ProgrammingError:提供的绑定数量不正确。当前语句使用5,并且提供了10个。