-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
(Feature request) when using spring-integration-jdbc and HANA DB #4009
Comments
That's wrong assumption. Better to check docs before going into the woods: https://docs.spring.io/spring-integration/reference/html/jdbc.html#supported-databases. With this ticket we probably can take a look into including a support for this DB. Just need to understand how popular it is and if it has an open source JDBC driver. |
Hello, you are right, there is no support for SAP HANA DB at the moment, I did not check the docs properly. Actually, in my app, the I noticed that SAP HANA DB support was recently added to I would be happy to help in this integration. How exactly could I help? |
If you don't use any other Spring Integration JDBC features, you don't need other tables, just that For contributing such a support back to the framework, please, look first into general Contribution Guideline: https://github.com/spring-projects/spring-integration/blob/main/CONTRIBUTING.adoc. Then you need to open pull request against this issue and add something like Another way might be a simple remapping fix in Spring Boot, if HANA is fully compatible with existing DB schema.
We definitely need to know what is a |
In what version(s) of Spring Integration are you seeing this issue?
5.5.14
Describe the bug
Unable to start my spring-boot service when using
spring-integration-jdbc
andHANA DB
. It looks like that it is not possible to determinate the database type when I am injecting mydatasource
(which usesHANA DB
) to theorg.springframework.integration.jdbc.lock.LockRepository
. This exception is raised:I am using Hikari datasource, Hibernate and
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.HANAColumnStoreDialect
.Expected behavior
I would expect that
spring-integration-jdbc
is compatible with HANA DB, but I might have wrongly assumed this. Doesspring-integration-jdbc
supportsHANA DB
? In that case this bug issue could be flagged rather as a feature request.The text was updated successfully, but these errors were encountered: