Sqlite插入或更新
在数据库中我们经常会有这种需求,插入时,某条记录不存在则插入,存在则更新。或更新时,某条记录存在则更新,不存在则插入。比如:
人员信息数据库,某个身份证若已经存在,重复插入则更新,否则新增记录。
网页缓存数据库,某个url已经存在,重复插入则更新,否则新增记录。
在mysql中可以使用replaceinto或是insertinto….onduplicatekeyupdate实现。在sqlite中我们同样可以使用replaceinto实现。分为两步,下面以httpcache表为例,仅包含三个字段,主键_id,url,content
第一步:新建唯一索引:CREATEUNIQUEINDEXmycolumn_indexONmytable(myclumn);
CREATEUNIQUEINDEXunique_index_urlONhttp_cache(url);
java中可以直接在SQLiteOpenHelper的OnCreate中添加
public class DbHelper extends SQLiteOpenHelper { public void onCreate(SQLiteDatabase db) { db.beginTransaction(); try { db.execSQL(DbConstants.CREATE_HTTP_RESPONSE_TABLE_UNIQUE_INDEX.toString()); db.setTransactionSuccessful(); } finally { db.endTransaction(); } } }
第二步:调用replaceinto语句
REPLACEINTOhttp_cache(url,content)VALUES('http://www.baidu.com/','<html></html>');
java中可以
sQLiteDatabase.replace(DbConstants.HTTP_RESPONSE_TABLE_TABLE_NAME, null, contentValues)
更多见:http://www.trinea.cn/
相关推荐
specialbrian 2020-07-31
loveandroid0 2020-06-18
DAV数据库 2020-06-17
URML 2020-06-13
Dlanguage 2020-06-12
Plant 2020-06-07
疯狂老司机 2020-06-07
chibangyuxun 2020-06-07
sdwylry 2020-06-04
airfling 2020-05-31
Plant 2020-05-31
zbcaicai 2020-05-26
chaochao 2020-05-19
Plant 2020-05-17
小火车 2020-05-14
beibeijia 2020-04-25
Rain 2020-04-16