objectbox-java icon indicating copy to clipboard operation
objectbox-java copied to clipboard

Android Database - first and fast, lightweight on-device vector database

Results 142 objectbox-java issues
Sort by recently updated
recently updated
newest added

Code example probably will be best description here. ```kotlin @Entity class KAEntry( @Unique val key: String, val value: String, @Id var id: Long = 0 ) class MyApp : Application()...

enhancement

**Description** I use ObjectBox as a database in a Java Desktop App. My build tool is gradle and I add ObjectBox dependencies manually without dedicated plugin. Code fragment I use...

enhancement

Is there any roadmap or consideration to keep old data while doing type-migration? **Describe the solution you'd like** Would be nice to keep old data while doing type-migration. Say `@Entity`...

enhancement

Currently, when you operate on a ToMany, an add or remove loads all entities. Alternatively we should also have means to modify to-many relations without loading everything to avoid bloating...

enhancement

**Describe the solution you'd like** It would be good if we developer can set limit for maximum number of rows that can be saved in database so that if entries...

enhancement

After opening the DB browser, it shows 50 rows on each page of the DB with 1000's of rows. When I press on a column name, it sorts the rows...

enhancement

In my Pre-launch report details I see continuously crashes on Android 8.1 phones. I cannot reproduce it on a Emulator with SDK 27. Stacktrace error (see for log details below):...

bug

we want to use the data in multi process, but i dont know whether this can use ?

enhancement

It would be nice if `QueryBuilder` would allow to test for emptiness without having to resort to using `filter()`. This would be especially useful with many-to-many relations if one could...

enhancement

I have a user who I've diagnosed to have object-box-related issues. I can send him debug builds with the ObjectBox debug flags (debugFlags(), debugRelations(), etc...) turned on. However, I would...

enhancement