DBConvert reads Visual FoxPro .dbc containers or
folders of free .dbf tables. Pick the source
shape at the connect step.
Keep .fpt / .dbt memo companions and
.cdx index files with the DBF folder so long text,
General fields, and index metadata can be read with the table set.
DBF character, numeric, logical, date, datetime, memo, and
AutoInc fields are mapped to Access-compatible storage before
the target file is written.
Deleted rows and file size
Decide whether DBF rows marked as deleted should be imported.
For large sources, filter before the load because Access
files are capped at 2 GB.
Legacy DOS and Windows code pages need a target encoding
decision so names, addresses, and memo text do not arrive in
Access as broken characters.
Application objects boundary
DBConvert migrates tables, views, and foreign keys. FoxPro
forms, reports, menus, .prg programs, and
business logic are rebuilt separately if Access becomes the
new application front end.
Type mapping checkpoints
FoxPro / DBF
Access
Notes
Character (C), Varchar (V)
Short Text
Check code page and trailing-space policy for keys and joins.
Memo (M)
Long Text
Requires the matching memo companion such as .fpt or .dbt.
Numeric (N), Currency (Y)
Number / Currency
Review precision and scale before financial reports use the Access file.
Integer (I), AutoInc
Number / AutoNumber
Confirm next values before new Access inserts begin.
Date (D), DateTime (T)
Date/Time
Blank legacy dates should be reviewed during the test load.
Logical (L)
Yes/No
Check true / false / blank values if the DBF source uses tri-state logic.
FoxPro application objects - out of scope
DBConvert's migration covers tables with their fields, types, and indexes, and the
relationships between them. FoxPro forms, reports, menus, .prg programs,
and business logic are part of the application, not the database, and are rebuilt in
Access or in the new front end as a separate workstream.