Exports all tables of a database of which the names match a given pattern to csv files.
dumpDatabase( db, pattern = "^tbl", target_dir = NULL, create_target_dir = FALSE, sep = ",", dec = ".", qmethod = "double", row.names = FALSE, ... )
db | full path to database or name of ODBC data source |
---|---|
pattern | pattern matching names of tables to be exported. Default: "^tbl", i.e. tables starting with "tbl" |
target_dir | target directory. By default a new directory is created in the same directory as mdb resides in. The new directory has the same name as the database file with dots substituted with underscores |
create_target_dir | if |
sep | passed to |
dec | passed to |
qmethod | passed to |
row.names | passed to |
... | further arguments passed to |