Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net.zetetic.database.sqlcipher.SQLiteConstraintException thrown if @Upsert is used #23

Open
AleksandarIlic opened this issue Nov 3, 2023 · 2 comments

Comments

@AleksandarIlic
Copy link

I have implemented the sqlcipher-android in this commit:
PrimalHQ/primal-android-app@4bc4482

If I run clean install build I'm getting:

net.zetetic.database.sqlcipher.SQLiteConstraintException: UNIQUE constraint failed: ProfileData.ownerId (code 1555)
	at net.zetetic.database.sqlcipher.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method)
	at net.zetetic.database.sqlcipher.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:815)
	at net.zetetic.database.sqlcipher.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:823)
	at net.zetetic.database.sqlcipher.SQLiteStatement.executeInsert(SQLiteStatement.java:113)
	at androidx.room.EntityInsertionAdapter.insert(EntityInsertionAdapter.kt:51)
	at androidx.room.EntityUpsertionAdapter.upsert(EntityUpsertionAdapter.kt:91)
	at net.primal.android.profile.db.ProfileDataDao_Impl.upsertAll(ProfileDataDao_Impl.java:165)
	.....

It turns out that @Upsert is the cause of the crash. If we replace it with @Insert(onConflict = OnConflictStrategy.REPLACE) everything works fine. PrimalHQ/primal-android-app@a46232a

@developernotes
Copy link
Member

Hi @AleksandarIlic

Does it work using @Upsert if you use @PrimaryKey(autoGenerate = true) within your entities?

@AleksandarIlic
Copy link
Author

AleksandarIlic commented Nov 10, 2023

Hi @developernotes,

It's not applicable. Our primary keys are Strings and sometimes two or more String fields. @PrimarKey(autoGenerate = true) can be applied only to ints and longs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants