odm_write_tbl: ODM write function

Description Usage Arguments Value Examples

View source: R/odm_write_tbl.R

Description

This function can write meta data to an ODM database table

Usage

1
odm_write_tbl(x, odm_tbl = "Seriescatalog", channel = ODM)

Arguments

x

dtaframe to load to ODM table

odm_tbl

name of the table in the ODM database

channel

connection handle as returned by odbcConnect (default value = ODM)

Value

number of rows effected

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## Not run: 
# Establish connection with database
ODM <- odbc::dbConnect(odbc::odbc(), dsn = "ODM", database = "OD",
 UID = "update", PWD = rstudioapi::askForPassword("Database password"),
 Port = 1433)

# Get a list of sites in the database
Site <- odm_read_tbl(odm_tbl = "Sites")

# Get a list of data series in the database
odm_write_tbl(Site, odm_tbl = "Sites")

## End(Not run)

D-ESC/ODMr documentation built on Sept. 16, 2021, 10:52 a.m.