RushOrm icon indicating copy to clipboard operation
RushOrm copied to clipboard

Object-relational mapping for Android

Results 43 RushOrm issues
Sort by recently updated
recently updated
newest added

Hello. I was wondering if there is any option to set extra columns in the relations. For example: _Element has many Tags_ So in the table Element_Tag there are three...

Current documentation does not say anything about unique constraints in table.

enhancement

``` android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: rush_com_arkaa_app_patient_io_PatientProfileResponseModel_rush_com_arkaa_app_patient_io_PatientAllergyModel_Allergies.rush_id (code 1555) at android.database.sqlite.SQLiteConnection.nativeExecuteForChangedRowCount(Native Method) at android.database.sqlite.SQLiteConnection.executeForChangedRowCount(SQLiteConnection.java:743) at android.database.sqlite.SQLiteSession.executeForChangedRowCount(SQLiteSession.java:754) at android.database.sqlite.SQLiteStatement.executeUpdateDelete(SQLiteStatement.java:64) at android.database.sqlite.SQLiteDatabase.executeSql(SQLiteDatabase.java:1706) at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1635) at co.uk.rushorm.android.AndroidRushStatementRunner.runRaw(AndroidRushStatementRunner.java:37) at co.uk.rushorm.core.RushCore$13.runRaw(RushCore.java:491) at co.uk.rushorm.core.implementation.ReflectionUpgradeManager.moveRows(ReflectionUpgradeManager.java:284) at co.uk.rushorm.core.implementation.ReflectionUpgradeManager.upgrade(ReflectionUpgradeManager.java:122) at...

Hi, i saw the Issue with the NumberFormatExcpt here: https://github.com/Stuart-campbell/RushOrm/issues/34 And this bug should be fixed in v1.1.5. We're using v1.1.7 in our project and we get a lot of...

bug

Hello, I want to retrieve the parent of an object given one of child fields. Is there any way to archieve this? ex. Dog has name, human has name and...

This is similar to #111 After a lot of deleting and saving, (in my app this happens on every load) when using .deleteAll(Class, callback), ui freezes (just before the callback...

When we have a structure **Element**->**ElementChild**->**OtherChild(n)** some records are not stored in the database and some references between the child(n) and the parent child are not created. This will lead...

Hi There is any method to execute raw query and join condition in current version. And any future update to accomplish these feature.

question

Hi Any provision to get distinct value from table. Like:- SELECT DISTINCT column_name,column_name FROM table_name;

enhancement

Hello, I have ``` Parent.class: @List... List children; ``` Is there any way to access to parent from a child? ``` Child child = new RushSearch().findSingle(Child); child.parent ??? ``` Thanks