Java Jackment library documentation?

I need to read and write some data in the .mdb Access file and over the Internet. I found the Jackcess library that exactly performs what.

Unfortunately, I cannot find documentation to use this. There are some examples on the library website, but no real documentation. Can someone tell me somewhere somewhere somewhere?

+3
source share
2 answers

Javadoc is for clarification. The primary classes would be Database and Table . The library is also tested to a large extent, so you can insert unit test code to see many examples. There is currently no great Getting Started document. This was discussed earlier, but, unfortunately, no one really lifted the ball. At the same time, the help forum is actively monitored .

UPDATE:

Now there is a cookbook , which is the beginning of a more complete documentation at the user level.

+4
source

You can use jackcess-orm which use DAO and POJO templates with annotations.

0
source

All Articles