You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting the issue. We want to only provide optional features that build on Spring JDBC and we should not have mandatory dependencies in our code.
With the merge of #97 the left-over dependencies became visible.
We now ship our own SqlProvider variant to not require Spring JDBC as mandatory dependency. Spring JDBC can be provided optionally to use SQL-code based exception translation.
spring-jdbc is now an optional dependency, wich is a good thing !
But this leads to an error
In DefaultSqlResult, this line does not compile anymore, because SqlProvider is a spring-jdbc Interface
Workaround is to add dependency on spring-jdbc in my project, but the fix would be to not depend anymore on spring-jdbc 😄
Maybe there are other spring-jdbc remaining uses in r2dbc.
The text was updated successfully, but these errors were encountered: