浏览 2547 次
锁定老帖子 主题:Sqlite插入或更新
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2013-05-15
最后修改:2013-05-15
人员信息数据库,某个身份证若已经存在,重复插入则更新,否则新增记录。 网页缓存数据库,某个url已经存在,重复插入则更新,否则新增记录。 在mysql中可以使用replace into或是insert into …. on duplicate key update实现。在sqlite中我们同样可以使用replace into实现。分为两步,下面以http cache表为例,仅包含三个字段,主键_id, url, content 第一步:新建唯一索引: CREATE UNIQUE INDEX mycolumn_index ON mytable (myclumn); CREATE UNIQUE INDEX unique_index_url ON http_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(); } } } 第二步:调用replace into语句 REPLACE INTO http_cache (url, content) VALUES ('http://www.baidu.com/', '<html></html>' ); java中可以 sQLiteDatabase.replace(DbConstants.HTTP_RESPONSE_TABLE_TABLE_NAME, null, contentValues) 更多见:Trinea Android开发笔记 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |