宣告變數
system.data.sqlite.sqlitecommand cmd = new system.data.sqlite.sqlitecommand();
system.data.sqlite.sqliteconnection conn = null;
string sql = "";
string value = "";
int state = 0;
(1)開啟資料來源
private sqliteconnection opendatasource()
(2)入庫
//儲存
public int adddata(string value)
(3)查詢
public dataset gettable(string strwhere)
cmd.commandtext = strsql.tostring();
cmd.connection = opendatasource();
sqlitedataadapter da = new sqlitedataadapter();
da.selectcommand = cmd;
dataset ds = new dataset();
da.fill(ds);
closedatasource();
return ds;
}
(4)關閉連線
private void closedatasource()
C 操作SQLite資料庫
在使用c 操作sqlite之前,需要獲得sqlite3.h,sqlite3.lib,sqlite3.dll,大家可以在 這裡 int sqlite3 open char path,sqlite3 db 這個函式開啟資料庫,第乙個引數為sqlite檔案的位址,第二個引數是sqlite3的指標的指標,也...
C 操作SQLite資料庫
在使用c 操作sqlite之前,需要獲得sqlite3.h,sqlite3.lib,sqlite3.dll,大家可以在 這裡 int sqlite3 open char path,sqlite3 db 這個函式開啟資料庫,第乙個引數為sqlite檔案的位址,第二個引數是sqlite3的指標的指標,也...
C 操作SQLite資料庫
在使用c 操作sqlite之前,需要獲得sqlite3.h,sqlite3.lib,sqlite3.dll,大家可以在 這裡 int sqlite3 open char path,sqlite3 db 這個函式開啟資料庫,第乙個引數為sqlite檔案的位址,第二個引數是sqlite3的指標的指標,也...