android – Realm Auto Increament字段示例

前端之家收集整理的这篇文章主要介绍了android – Realm Auto Increament字段示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在 android中的Realm数据库添加自动增量键字段.
我怎样才能做到这一点?
这可能吗?

提前致谢.

解决方法

Relam目前不支持auto_increment

GitHub上看到这个问题

你可以像这样解决问题

  1. realm.executeTransaction(new Realm.Transaction() {
  2. @Override
  3. public void execute(Realm realm) {
  4. // increment index
  5. Number num = realm.where(dbObj.class).max("id");
  6. int nextID;
  7. if(num == null) {
  8. nextID = 1;
  9. } else {
  10. nextID = num.intValue() + 1;
  11. }
  12. dbObj obj = realm.createObject(dbObj.class,nextID);
  13. // ...
  14. }
  15. }

猜你在找的Android相关文章