Replies: 2 comments 2 replies
-
I guess you can override the |
Beta Was this translation helpful? Give feedback.
1 reply
-
What error are you getting? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am working on a Micronaut app that uses SQLite. I am able to apply data migrations with FlyWay but when I try to read from the database using a standard findAll method via micronaut-data-connection-jdbc:4.9.0 I get an exception from JdbcConnectionUtils.java:170.
ConnectionOperations.executeRead() has a comment that explicitly says that "The connection manager might not support the read only connection!". What am I supposed to do when this happens? Is there a setting that allows me to disable readOnly connections? Do I need to create my own implementation of JdbcRepositoryOperations and set that via @RepositoryConfiguration?
Thank you for any help!
Beta Was this translation helpful? Give feedback.
All reactions