4

I need to read and write some data on .mdb Access file and over the web I found the Jackcess library that that does exactly that.

Unfortunately I could't find any documentation to use that. On the library website there are a couple of examples, but no real documentation. Can anyone tell me if there's some sort of documentation somewhere?

jtahlborn
  • 52,909
  • 5
  • 76
  • 118
Luca
  • 1,704
  • 3
  • 29
  • 42

2 Answers2

5

The javadoc is intended to be fairly explanatory. The primary classes would be Database and Table. The library is also heavily unit tested, so you can dig into the unit test code to see many examples. There isn't currently a great "getting started" document. It has been discussed before, but, unfortunately no one has picked up the ball on actually writing it. That said, the help forum is actively monitored.

UPDATE:

There is now a cookbook, which is the beginnings of a more comprehensive user-level documentation.

jtahlborn
  • 52,909
  • 5
  • 76
  • 118
0

You can use jackcess-orm that use DAO pattern and POJO with annotations.

Qantas 94 Heavy
  • 15,750
  • 31
  • 68
  • 83
amgohan
  • 1,358
  • 3
  • 14
  • 24