我试图在我的C程序中使用sqlite3创建一个带有表的数据库,但是该数据库总是创建为空的,尽管它是使用sqlite shell创建的非空的,
下面是我的代码:

int main(void)
{
    printf("hello\n");
    sqlite3 *sqdb;
    sqlite3_initialize();
    const char* db = "test";
    sqlite3_open(db, &sqdb);
    const char* stmt = "CREATE TABLE IF NOT EXISTS testtable(creationdate DATE, data VARCHAR);";
    sqlite3_stmt *ppstmt;
    if (sqlite3_prepare_v2(sqdb, stmt, -1, &ppstmt, 0)!=SQLITE_OK)printf("error!\n");
    sqlite3_finalize(ppstmt);
    getch();
    return 0;
}

请帮我解决这个问题。

最佳答案

试试这个:

   int main(void)
{
    printf("hello\n");
    sqlite3 *sqdb;
    int ret;
    sqlite3_initialize();
    const char* db = "test.sqlite3";
    sqlite3_open(db, &sqdb);
    const char* stmt = "CREATE TABLE IF NOT EXISTS testtable(creationdate DATE, data VARCHAR);";
    sqlite3_stmt *ppstmt=NULL;

    ret=sqlite3_exec(sqdb,stmt,0,0,0);
    if(ret!=SQLITE_OK)printf("error!\n");
    else printf("Table added\n");
    sqlite3_finalize(ppstmt);
    sqlite3_close(sqdb);
    return 0;
}

请务必在操作后关闭数据库。

关于c - SQLite3:数据库创建为空吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23525340/

10-13 04:37