android SQLite InsertOrUpdate的使用

  在SQL中,是支持insertOrUpdate的,但在android SQLite中并不支持了,那我们怎么办呢?很简单

  比如有以下表结构:


  其中,id是自动增长的索引,注意,现在很关键:

  如果你想name值存在时,更新这条记录,不存在时增加一条记录,那么你就设name为唯一索引; 这样就能实现我们的目标。
  例如:

replace into test(name,age) values('zs',22)
replace into test(name,age) values('zs',22)
replace into test(name,age) values('zs',22)


  执行上述语句后你会发现,后两条的作用是update(其实它是先delete,后insert)的

  我的博客其它文章列表
  http://my.oschina.net/helu

你可能感兴趣的:(android,sqlite,插入或更新,InsertOrUpdate)