Extract a list of sex codes and descriptions from the SVDBS.FSCS_SEX_CODES table
get_sex_fscs(channel)
an Object inherited from DBIConnection-class. This object is used to connect
to communicate with the database engine. (see connect_to_database
)
A list is returned:
tibble containing the result of the executed $sql
statement
containing the sql call
a vector of the table's column names
Use the data dictionary for field name explanations
connect_to_database
Other helper:
get_conversion_factors()
,
get_cruise_purpose()
,
get_length_weight()
,
get_maturity()
,
get_sex()
,
get_species()
,
get_strata()
,
get_vessel()
if (FALSE) { # \dontrun{
# extracts complete sex table
channel <- dbutils::connect_to_database(server="serverName",uid="userName")
get_sex_fscs(channel)
} # }