Convert Paradox to MDB

I need to access the database in DB files (paradox). I am in a project that will be used by Delphi and Access (I know that it is very old, but the client wants this), and the old project uses a paradox database.

I would like to know if there is any program to convert Paradox (DB files) to MDB (to access ms access)?

+3
source share
3 answers

I once made Paradox to successfully access conversion using the Delphi code I found on this page:

http://delphi.about.com/od/database/l/aa062601a.htm

+3
source

The paradox itself can do this: use the ODBC binding to your MDB file, and then export from Paradox to MDB.

+3
+1

Source: https://habr.com/ru/post/1786450/


All Articles