Add a new entry to the Organizations table

db_describe_organization(db = db, OrganizationTypeCV, OrganizationCode,
  OrganizationName)

Arguments

db

database connection object to sqlite or postgresql database with odm2 schema

OrganizationTypeCV

Organization type from controlled vocabulary (e.g., government agency, university, etc.)

OrganizationCode

A unique text code identifying the Organization (e.g., USGS)

OrganizationName

The full text name of the organization

Value

message that your entry has been added

See also

Examples

db <- rodm2::create_sqlite(connect = TRUE) db_describe_organization(db, "Manufacturer", "Onset", "Onset")
#> Manufacturer Onset has been entered into the Organizations table.