python 中向sqlite 插入数据时,使用占位符出现问题 10

非常纠结的一个问题。先建一个表,向里面插入数据,其中包含中文字符,非常正常。但是当用占位符替换中文字符时,就不行了。出现错误,ProgrammingError:Incor... 非常纠结的一个问题。先建一个表,向里面插入数据,其中包含中文字符,非常正常。
但是当用占位符替换中文字符时,就不行了。出现错误,ProgrammingError: Incorrect number of bindings supplied. The current statement uses 1, and there are 6 supplied.

第一条插入数据的代码如下:
import sqlite3
# -*- coding: utf-8 -*-
cx = sqlite3.connect('test.db')
cu = cx.cursor()
cu.execute("""create table catalog( id integer primary key, pid integer, name text UNIQUE )""")
cu.execute("insert into catalog values(10, 0,'是的')")
cx.commit()

把插入条数据的代码用变量t和占位符表示:
t='是的'
cu.execute("insert into catalog values(11, 0,?)",t)
展开
 我来答
wangyu881026
2014-04-08
知道答主
回答量:1
采纳率:0%
帮助的人:1391
展开全部
cu.execute("insert into catalog values(11, 0,?)",(t,))
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式