Creëer het .bat bestand waarin R de opdracht krijgt de archieflabels Access DB in te vullen

create_archief_labels_bat(bat_file, db_location, r_location, r_script_location)

Arguments

bat_file

the name including path where the .bat file should be created

db_location

the name including path to the database for the printable raport

r_location

the path to the R-32 bit version. (paste0(R.home, "/bin/i386/Rscript.exe")) is often OK

r_script_location

the name including path where the .R script is that the .bat file will execute

Value

in het gekozen Access bestand wordt de tabel tblTemp ingevuld. De View QueryEtikettenPieter zal deze data dan aanspreken en als bron dienen voor een voorgedefinieerd Access rapportje.

Examples

if (FALSE) { # \dontrun{
db_locatie <- system.file("extdata", "Archief_Labels_voorbeeldDB.accdb",
  package = "inbolims"
)
r_locatie <- paste0(R.home, "/bin/i386/Rscript.exe")
bat_bestand <- "Archieflabels.bat"
r_script <- system.file("extdata", "Archief_Labels.R", package = "inbolims")
create_archief_labels_bat(bat_bestand, db_locatie, r_locatie, r_script)
} # }