1

我正在尝试将映射的键和值的内容保存到数据库表中。.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 );

}

4

1 回答 1

3

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

编辑:实际上,你的代码永远不会做你想做的事,因为你甚至没有调用sqlite3_stepafter sqlite3_prepare_v2,这意味着你只是在编译你的 SQL 语句,但从不评估它。你从哪里找到这个不好的例子?请参阅此处此处有关如何正确使用 SQLite C++ 接口的体面示例。

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

于 2013-04-04T16:53:57.407 回答