SQL的資料庫操作:新增、更新、刪除、查詢

yifanwu發表於2021-09-09

新增資料庫的方法:

db.execSQL("insert into Book (name,author,pages,price) values(?,?,?,?)",new String[]{"Jane Success","Jane Zhong","555","165"});


更新資料的方法:

db.execSQL("update Book set price=? where name=?",new String[]{"10.9","La la land"});


刪除資料的方法:

db.execSQL("delete from Book where pages > ?",new String[]{"500"});


查詢資料的方法:

db.rawQuery("select * from Book",null);


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2157/viewspace-2826408/,如需轉載,請註明出處,否則將追究法律責任。

相關文章