Rparadox provides a simple and efficient way to read
data from Paradox database files (.db) directly into R as
modern tibble data frames. It uses the underlying
pxlib C library to handle the low-level file format details
and provides a clean, user-friendly R interface.
This package is designed to “just work” for the most common use case:
extracting the full dataset from a Paradox table, including its
associated BLOB/memo file (.mb).
.db
files without needing database drivers or external software.tibble format, which is fully compatible with the Tidyverse
ecosystem..mb)
files.Date,
Time (hms), Timestamp
(POSIXct), Logical, Integer,
Numeric, and binary blob objects.Install the stable version from CRAN:
install.packages("Rparadox")You can install the development version from GitHub using the
devtools package.
# install.packages("devtools")
devtools::install_github("celebithil/Rparadox")See the package vignette for complete usage examples:
vignette("Rparadox")