C++ sqlite语句查询表格是否存在
在sqliteadministrator中输入:selectcount(*)fromsqlite_masterwheretype='table'andname='syst...
在sqlite administrator中输入:
select count(*) from sqlite_master where type = 'table' and name = 'systemdictionary'
可以得到正确的结果,返回1,但是在c++中通过语句
string tablename = systemdictionary;
string strSql = "select count(*) from sqlite_master where type = 'table' and name = '" + tablename + "'";
int nRes = sqlite3_exec(pepsdbase, strSql.c_str(), 0, 0, &cErrMsg);
每次得到的结果都是0,
请问这个语句哪儿有问题? 多谢了!! 展开
select count(*) from sqlite_master where type = 'table' and name = 'systemdictionary'
可以得到正确的结果,返回1,但是在c++中通过语句
string tablename = systemdictionary;
string strSql = "select count(*) from sqlite_master where type = 'table' and name = '" + tablename + "'";
int nRes = sqlite3_exec(pepsdbase, strSql.c_str(), 0, 0, &cErrMsg);
每次得到的结果都是0,
请问这个语句哪儿有问题? 多谢了!! 展开
2个回答
展开全部
sqlite3_exec返回 0 表示 strSql 查询语句执行成功了,至于查询到的结果,应该使用回调函数进行解析,即给 sqlite3_exec 填入一个回调函数:
int iCount;
int nRes = sqlite3_exec(pepsdbase, strSql.c_str(), CB_sqlite_count, &iCount,NULL);
if (nRes == SQLITE_OK)
{
return iCount; /* 如果iCount = 0,则无此表, 若为1 则有 */
}
回调函数参考写法:
static int CB_sqlite_count( void *data, int argc, char **argv, char **pszColName)
{
for (int i = 绝磨0; i < argc; i++)
{
*((int *)data) = atoi(argv[i]);
}
return 0;
}
注意一点:
在C++中,推荐使用外部函数作为 sqlite3_exec 的回调函数使用(因梁宏没为C++中,日常接触的Sqlit3为橡纳c语言库),其次使用类里面的静态成员做回调函数(这样会有一些局限)
推荐于2017-10-24
展开全部
这谨乱句话应该怎么写,才表示把表名“systemdictionary”赋值给string型差衫变量tablename。
string tablename = "systemdictionary";
按你的写法,是表示把string型变量systemdictionary表示的值赋值给string型变量tablename。两句话意义完祥庆档全不同的。请细心。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询