0

I have to connect to MS Access database for the back end transactions. So i need to add the jdbc connector for this. I am using Maven as the build tool, So so get the MS Access dependency from Maven repository what should I be entering the POM.xml? I tried on google search but could find relevent help.

Thanks.

GuruKulki
  • 25,776
  • 50
  • 140
  • 201

1 Answers1

4

Java provides a built in type 1 JDBC driver for ODBC data sources so you shouldn't need to add a Maven dependency for this. See: How to connect java to Ms Access 2010?

Alternatively you could use the Jackcess library by adding this dependency:

<dependency>
  <groupId>com.healthmarketscience.jackcess</groupId>
  <artifactId>jackcess</artifactId>
  <version>1.2.12</version>
  <type>jar</type>
</dependency>
Community
  • 1
  • 1
condit
  • 10,852
  • 2
  • 41
  • 60