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

## Issue Basics - ObjectBox version: 2.3.4 - Reproducibility: Always ## Reproducing the bug ### Description While running multiple JUnit tests for an ObjectBox store (using base code copied from...

enhancement
help wanted

android 8.0 huawei P9 objectVersion:2.4.0 I inserted 12w pieces of data into Message table ```java @Entity public class Message implements Serializable { @Id public long id; @Index private long serverId;...

enhancement

It's in the title, but a concrete example would be. Say we have a model with a String field called `field`. We have two objects in the database, one of...

enhancement

is possible to sort parent items by child property ? for example : Author - name - birthday Birthday - date i want list all authors, but when `birthday !=...

enhancement

I need run objectbox-java on Windows XP Embedded but the application cannot start. ![image](https://user-images.githubusercontent.com/936816/82549973-1d5bad80-9b5e-11ea-937d-18c85fed0bc0.png) I have installed the redistributable 2015-2019. ![image](https://user-images.githubusercontent.com/936816/82550063-42502080-9b5e-11ea-8ab2-d9330ecffed2.png) Can you help me? Thanks in advanced.

enhancement

## Issue Basics - ObjectBox version: 1.4.1 - Reproducibility: always ## Reproducing the bug ### Description Basically I am trying to remove that table because it is getting ridiclously large...

bug

```java @Entity public class City { @Id public long id; public String ; } ``` For city entries like these İzmir Ankara İstanbul Çorum While querying like ``` boxStore.boxFor(City.class).query().contains(City_.name, "I");...

enhancement

i think just like greendao for toMany relation need `@OrderBy` annotation example : ```java @Entity public class Customer { @Id private Long id; @Backlink(to = "customerId") @OrderBy("date ASC") private ToMany...

enhancement

With `core.autocrlf = true` for git on Windows the meta model file `default.json` is checked out with CRLF line endings. ObjectBox gradle plugin generates `default.json` with LF line endings when...

enhancement
low priority

I'm trying to use obervable queries to detect when the user is logged in my application in order to start fetching data in background with correct authorization token. ``` ......

enhancement
help wanted