JDBC driver and Hibernate dialect on public java repository
Any news about JDBC driver and Hibernate dialect on a public java repository, like mvnrepository? Today I need to download the jdbc driver and hibernate jar, add as an external resource on my maven config file to works.
Product version: IRIS 2020.4
Discussion (5)2
Comments
Try this
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/caretdev/iris-driver-distribution</url>
</repository><dependency>
<groupId>intersystems</groupId>
<artifactId>intersystems-jdbc</artifactId>
<version>3.2.0</version>
</dependency>
JDBC worked, thanks.
Do you have hibernate dependency?
As I know there is no jar with the latest Hibernate dialect for IRIS, yet. I think we can prepare it and publish it the same way.
This repo may help you with Hibernate
I created a new dialect and you can see how to use jdbc driver and dependency all into this article: https://community.intersystems.com/post/using-new-intersystems-iris-hib…