Java - Jackcess API with .accde(MS Access) format

893 Views Asked by At

is it possible to read .accde format file from jackcess API?if yes, sample code or syntax please.

The below code works with .accdb format.

public Database getDatabase() {
Database db;
    try {
        String accessFileName = "C:\\folder\\file.accdb";
        db = Database.open(new File(accessFileName));
    } catch (IOException e) {
        e.printStackTrace();
    }
    return db;
}
1

There are 1 best solutions below

0
On

I just gave a try using the same(above) code by changing from accdb to accde format, its working.

public Database getDatabase() {
Database db;
try {
    String accessFileName = "C:\\folder\\file.accde";
    db = Database.open(new File(accessFileName));
} catch (IOException e) {
    e.printStackTrace();
}
return db;
}