The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
This vignette shows how to introspect a table definition only and generate synthetic rows without reading any real data.
ok <- TRUE; msg <- NULL
out <- tryCatch({
if (!requireNamespace("DBI", quietly = TRUE) ||
!requireNamespace("RSQLite", quietly = TRUE)) {
stop("DBI/RSQLite not installed")
}
library(DBI); library(RSQLite); library(FakeDataR)
dbfile <- file.path(tempdir(), "employees.sqlite")
con <- DBI::dbConnect(RSQLite::SQLite(), dbfile)
on.exit(try(DBI::dbDisconnect(con), silent = TRUE), add = TRUE)
DBI::dbExecute(con, "
CREATE TABLE IF NOT EXISTS employees (
id INTEGER,
email TEXT,
phone TEXT,
is_active BOOLEAN,
hired_at TIMESTAMP,
salary NUMERIC,
dept TEXT
)
")
sch <- schema_from_db(con, "employees")
fake <- generate_fake_from_schema(sch, n = 20, seed = 14) # smaller
b2 <- llm_bundle_from_db(
conn = con, table = "employees",
n = 40, seed = 15, level = "high",
formats = "csv", path = tempdir(), filename = "employees_fake",
write_prompt = TRUE, sensitive_strategy = "fake"
)
list(sch = sch, fake = fake, bundle = b2)
}, error = function(e) { ok <<- FALSE; msg <<- conditionMessage(e); NULL })
if (!ok) {
cat("DB example skipped during vignette build:", msg, "\n")
} else {
str(out$fake$hired_at)
out$bundle$schema_path
out$bundle$data_paths$csv
}
#> POSIXct[1:20], format: "2025-09-29 03:21:37" "2025-09-29 09:58:10" "2025-09-27 14:25:49" ...
#> [1] "C:\\Users\\ZOBAER~1\\AppData\\Local\\Temp\\RtmpkfKgRn/employees_fake.csv"
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.