SQLite記憶體資料庫簡單使用範例

2021-06-07 18:38:19 字數 593 閱讀 3704

#include #include #include#include "sqlite3.h"

#pragma comment(lib,"sqlite3.lib")

#include #include #include "codingconv.h"

int main(int argc, char* argv)

sql="select * from test";

rc=sqlite3_prepare(db,sql,(int)strlen(sql),&stmt,&tail);

if(rc!=sqlite_ok)

rc=sqlite3_step(stmt);

ncols=sqlite3_column_count(stmt);

while(rc==sqlite_row)

fprintf(stderr,"\n");

rc=sqlite3_step(stmt);

} sqlite3_finalize(stmt);

sqlite3_close(db);

printf("\n");

return 0;

}

SQLite資料庫簡單使用

二 建立資料庫 sqlite3 student.db 建立名為student的資料庫 sqlite3命令,引數就是資料庫的名稱,如果該資料庫已存在,則使用,如果不存在,則新建乙個 如圖 三 建立表 create table person id integer primary key autoincr...

Sqlite 資料庫 FMDB 簡單使用

1 通過sqlite建立資料庫。首先匯入框架 建立資料庫的路徑 nsstring path nssearchpathfordirectoriesindomains nsdocumentdirectory nsuserdomainmask yes lastobject data.sqlite 第乙個引...

SQLite 簡單的資料庫

1.建立資料庫和表 引數1.資料儲存的檔案位置 引數2.檔案建立工廠類,這裡不需要,寫為空 db sqlitedatabase.openorcreatedatabase data data com.coderqi.android2 lesson 04 database database.db nul...