Describe a new person in the people and affiliations tables

db_describe_person(db = db, PersonFirstName, PersonLastName,
  AffiliationStartDate = Sys.Date(), PrimaryEmail)

Arguments

db

Database connection object

PersonFirstName

First name of the person

PersonLastName

Last name of the person

AffiliationStartDate

The date (YYYY-MM-DD) on which the person became affiliated with the organization. Default is todays date

PrimaryEmail

The primary email address of the person

Value

message that person was entered into database

See also

Examples

db <- rodm2::create_sqlite(connect = TRUE) db_describe_person(db = db, PersonFirstName = "Wendy", PersonLastName = "Wetland", AffiliationStartDate = "2018-01-01", PrimaryEmail = "wendy 'at' swamps.edu")
#> Wendy Wetland has been entered into the People table.