-
Notifications
You must be signed in to change notification settings - Fork 694
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
Can I use java.sql.Connection? #303
Comments
|
@Tapac Thank you |
I've tried this, but the connection is closed by a transaction. Debugging led me here: Line 85 in a0e5eb2
The connection should stay open, the TransactionManager shouldn't close a connection it hasn't established. |
@andreas-mausch it's not expected that you manage connections manually. |
I experimented with some database migration tools and flyway provides a This is related to #165. If it's not possible to use the connection they provide, I think I cannot use flyway and will have a look at harmonica. Edit: I've also tried to use their DataSource to create a new connection, but when I do this I run into locking problems with my sqlite database. |
Can I use java.sql.Connection to connect the database?
like as follows
The text was updated successfully, but these errors were encountered: