Source and target files
DBConvert reads a SQLite file and writes a new Access
.mdb or .accdb. Access files are
capped at 2 GB, so large SQLite sources should be filtered or
split.
Type affinity to Access fields
SQLite stores values flexibly; Access needs declared fields.
Review long text, numeric precision, booleans, date values,
and binary payloads before the target file is created.
Keys and AutoNumber
SQLite rowid-backed keys need an Access AutoNumber or Number
policy. Confirm next values before users begin inserting rows
into the Access file.
Dates and booleans
SQLite dates may be stored as text, integers, or real values.
Access Date/Time and Yes/No fields need consistent conversion
rules before reports or forms depend on them.
Query cleanup
Supported SQLite views can move as database objects, but
SQLite-only functions, LIMIT, dynamic typing
assumptions, and application SQL need Access-specific review.
Application objects boundary
DBConvert migrates tables, supported views, and foreign keys.
Access forms, reports, macros, modules, VBA, and UI workflows
are created separately if Access becomes the front end.