Please upload the files of your Paradox database directory. The file extensions are: .DB (for table), .PX (for primary index), .MB (for memos), .VAL (for validation), .TV (for formatting) and others.
Max file size for web uploads: 50 GB
The API will return a ZIP archive that contains a .SQL file. This .SQL is a MariaDB dump file and can be restored into your MariaDB installation.
Download the RebaseData client Java tool . To convert your database using RebaseData, run the following command:
java -jar client-0.0.5.jar convert --output-format=mariadb database-files.. output-dir/
Let's imagine we want to convert the EMPLOYEE table of the paradoxReader's sample files. We would have to upload all files starting with "EMPLOYEE", namely EMPLOYEE.DB, EMPLOYEE.F10, EMPLOYEE.PX and EMPLOYEE.VAL. The curl command would look like this:
curl -F 'files[]=@EMPLOYEE.DB' -F 'files[]=@EMPLOYEE.F10' -F 'files[]=@EMPLOYEE.PX' -F 'files[]=@EMPLOYEE.VAL' 'https://www.rebasedata.com/api/v1/convert?outputFormat=mariadb&errorResponse=zip' -o output.zipThe file output.zip will contain a MariaDB file, one for each table in the set of input files. If something went wrong, output.zip contains the error message.
The conversion process takes between 15 seconds and multiple minutes. It depends on the size of the database.