Export data from a dolt database
dolt_dump(
format = c("sql", "csv", "json", "parquet"),
out = NULL,
overwrite = FALSE,
dir = Sys.getenv("DOLT_DIR", "doltdb")
)
the export data format. One of "sql"
, "csv"
, "json"
, or
"parquet"
the location on-disk for export. In the case of "sql"
, format,
a single file path (default doltdump.sql
), otherwise a directory for all
tables to be dumped as separate files (default "doltdump")
whether to overwrite existing files/directories.
path to dolt database on-disk
the path(s) of exported files