代码只需让调用者知道表中是否有path
。
下面的c ++代码使用select count(*)
和sqlite3_get_table
正确地执行此操作,但只是暂时,然后死亡。
sqlite3_get_table显然存在问题。
有一个非常相似的问题here,但我不知道如何将这个答案应用于我的问题。
我已经阅读了sqlite文档并通过了sqlite教程。
我已经使用sqlite3_exec来初始化数据库并插入新记录但是再次看不出如何编写一个健壮的c ++方法,只要它在表中找到或找不到匹配就返回一个bool。正如我所说,下面的代码可以工作,但不会超过几百个电话。这不应该是数据库最简单的事情之一吗?有没有关于如何做到这一点的简单示例或有关解决此问题的最佳方法的建议?
bool ifFound(string path) {
if (turn_off) return false;
char **result;
int nrow = 0; // Number of result rows
int ncol = 0; // Number of result columns
char * zErrMsg = 0; // Error message
if (SQLITE_OK != sqlite3_open(database_path.c_str(), &db)) {
coutError(__FILE__, __LINE__, "Can't open database " + database_path);
return false;
}
int count = 0;
string sqlCommand = "select count(*) from my_table where path='"+path+"'";
if (SQLITE_OK ==
sqlite3_get_table(db, sqlCommand.c_str(),&result,&nrow,&ncol,&zErrMsg))
count = atoi(result[ncol]);
else coutError(__FILE__, __LINE__, sqlCommand + " " + zErrMsg);
sqlite3_free_table(result);
sqlite3_close(db);
return (count != 0);
}
答案 0 :(得分:1)
摆脱sqlite3_get_table的一种方法是将其替换为sqlite3_exec,一个用于处理查询结果的回调,以及一个用于保存计数的全局变量。
static int pathFound = 0;
int sqlCallback(void *p, int argc, char **argv, char **azColName) {
pathFound = atoi(argv[0]);
return 0;
}
void checkPath(string path) {
string sqlCommand = "select count(*) from m_table where path='"+path+"'";
rc = sqlite3_exec(db, sqlCommand.c_str(), sqlCallback, 0, &zErrMsg);
if (SQLITE_OK != rc) {
coutError(__FILE__, __LINE__, sqlCommand + "\n" + zErrMsg);
sqlite3_free(zErrMsg);
}
sqlite3_close(db);
if (0 == pathFound) doInsert(path);
}