-
Notifications
You must be signed in to change notification settings - Fork 623
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
org.hibernate.exception.GenericJDBCException: Unable to extract generated-keys ResultSet #963
Comments
Oh, maybe I should have read the release log for 3.43.0.0 before 🤦♂️ 🚨 remove support for Statement#getGeneratedKeys: getGeneratedKeys is not supported anymore Any suggestion what I've to change in my code to not use getGeneratedKeys? |
From what I see, I've to change how hibernates handles the
|
You should use https://www.sqlite.org/lang_returning.html |
Is the returning clause supported on older releases of sqlite? |
It is supported until version 3.42.0.1. |
|
It seems like Kotlin Exposed does not support |
Describe the bug
While my application is trying to save the first entity to sqlite dabase, the exception occurs. Never happened before, and this was the only change in my latest build. After switching back to 3.42.0.1 it's working again.
To Reproduce
Sorry, but I have no idea
Expected behavior
3.43.0.0 should behave like 3.42.0.1 😉
Logs
Environment (please complete the following information):
Additional context
My application is updating a SQLite database from an Android based media player.
The text was updated successfully, but these errors were encountered: