This function loads one or more tables from a git repository and saves them in an access database.

from_git_to_access(tables, repo_path, database)

Arguments

tables

vector with table names of tables that should be moved

repo_path

name and path of local git repository in which results should be saved

database

name of fieldmap/access database (with specific fieldmap structure) including path

Value

No value is returned, the tables are saved in the access database.

Examples

if (FALSE) {
#change paths before running
library(forrescalc)
from_git_to_access(
  tables = c("qAliveDead", "qdecaystage"),
  repo_path = "C:/gitrepo/forresdat",
  database = "C:/db/testdb.accdb"
)
}