資料儲存 SQLite增刪改查

2021-07-10 23:11:33 字數 1278 閱讀 9474

contentvalues.put("name","張三");

contentvalues.put("age",18);

contentvalues.put("clazz","計算機1301班");

db.insert("book",null,contentvalues);

contentvalues.clear();

contentvalues.put("name","李四");

contentvalues.put("age",25);

contentvalues.put("clazz","土木1403班");

db.insert("book",null,contentvalues);

contentvalues.clear();

contentvalues.put("clazz","家裡蹲大學");

//將名字為張三的clazz欄位改為家裡蹲大學

db.update("book",contentvalues,"name=?",new

string);

contentvalues.clear();

//刪除年齡小於20歲的學生資訊

db.delete("book","age<?",new

string);

cursor cursor=db.query("book",null,null,null,null,null,null);

if (cursor.movetofirst())while (cursor.movetonext());

cursor.close();

}

使用sql運算元據庫

db.execsql("insert into book(name,author,prices,pages)values(?,?,?,?)",new

string);

db.execsql("update book set price = ? where name = ?",new

string);

db.execsql("delete

from book set

where name = ?",new string);

db.rawquery("select * from book",null);

sqlite 增刪改查

公共 private sqlitedatabase database getwritabledatabase 1.新增新資料 database.execsql insert into tablename id,name,passname,time values new object 2.刪除資料,多...

sqlite的增刪改查

基本步驟 1.開啟資料庫 2.處理資料 3.關閉資料庫 先設定全域性變數 lazy var documentspath string 指標 var db opaquepointer?nil var stmt opaquepointer?nil 建立或開啟資料庫 func createoropenda...

sqlite3增刪改查

增刪改查 查詢資料 sqlite3 sql std string pathname std string sql line select from tablename 查詢所有列if sqlite3 open v2 pathname.c str sql,開啟方式 null sqlite3 final...