rename columns named "Index" to "Idx" ("Index" is an allowed name in MS-Access, but is forbidden in SQLite).
copy over "OLE" data into BLOBs.
The first is trivial and hopefully unique to my database as (repeatedly) calling a "index" a column when that is a reserved word in SQL is not very smart.
Renaming attempt shouldn't hurt anyways.
The second allows to pass over data contained in OLE columns, in hope someone will be able to interpret them.
In my case those "OLE" fields contain jpeg-formatted images, without any "decoration".
They show up as "UNKNOWN" OLE Type in jackcess.
This will do two things:
The first is trivial and hopefully unique to my database as (repeatedly) calling a "index" a column when that is a reserved word in SQL is not very smart. Renaming attempt shouldn't hurt anyways.
The second allows to pass over data contained in OLE columns, in hope someone will be able to interpret them. In my case those "OLE" fields contain jpeg-formatted images, without any "decoration". They show up as "UNKNOWN" OLE Type in jackcess.