数据未插入sqlite表c ++

时间:2013-04-04 16:36:24

标签: c++ c database sqlite

我正在尝试将地图的键和值的内容保存到数据库表中。创建了.dbo文件,但没有任何内容进入表中。它不会创建表但不会退出。我想知道我的代码有什么问题。

void names_table( std::map<std::string, unsigned int> &names ){
std::string sql; 
std::string str1;
std::string str2;
std::string str3;

sqlite3_stmt *stmt;
const char *file_names = create_db_file( ); /* default to temp db */
sqlite3 *db;
sqlite3_initialize( );

int rc = sqlite3_open_v2( file_names, &db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
if ( rc != SQLITE_OK) {
    sqlite3_close( db );
    cout << "Error: Database cannot open!" << endl;
    exit( EXIT_FAILURE);
}
sql = "CREATE TABLE IF NOT EXISTS names_table (offset INTEGER PRIMARY KEY, stname TEXT);";
sqlite3_prepare_v2(db, sql.c_str(), sql.size(), &stmt, NULL);
if (sqlite3_step(stmt) != SQLITE_DONE) cout << "Didn't Create Table!" << endl;

for (auto pm = names.begin(); pm != names.end(); pm++) {
    str2 = "'" + pm->first + "'";
    char tmp[15];
    sprintf(tmp,"%u",pm->second);
    str3 = tmp;
    str1 = (((("INSERT INTO  names_table VALUES(" + str3) + ", ") + str2) + ");");
    std::cout << str1 << std::endl;
    sql = (char *)str1.c_str();
    // stmt = NULL;
    rc = sqlite3_prepare_v2(db, sql.c_str(), sql.size(), &stmt, NULL);
    if ( rc != SQLITE_OK) {
        sqlite3_close(db);
        cout << "Error: Data cannot be inserted!" << endl;
        exit ( EXIT_FAILURE);
    }
}
sqlite3_close( db );

}

1 个答案:

答案 0 :(得分:3)

INSERT INTO names_table VALUES(ramsar, 8329) - 我希望您知道SQL中的字符串文字需要用引号括起来。试试这个:INSERT INTO names_table VALUES('ramsar', 8329)

编辑:实际上,您的代码永远不会做您想要的,因为您甚至没有在sqlite3_step之后调用sqlite3_prepare_v2,这意味着您只是编译您的SQL语句,但从不评估它。你在哪里找到这个坏榜样?有关如何正确使用SQLite C ++接口的详细信息,请参阅herehere

PS:停止在C ++中弄乱sprintf。你有std::stringstream