Experimental support for JET5 .accdb files

Right now, they are handled like JET4 file.
This commit is contained in:
Jean-Michel Vourgère
2012-07-03 00:31:23 +02:00
parent 1db0a89ee2
commit c566407eaf
7 changed files with 40 additions and 38 deletions

View File

@@ -70,6 +70,8 @@ main(int argc, char **argv)
printf("JET3\n");
} else if (IS_JET4(mdb)) {
printf("JET4\n");
} else if (IS_JET5(mdb)) {
printf("JET5\n");
} else {
printf(_("unknown database version\n"));
}