Get list of methods currently in database

db_get_methods(db)

Arguments

db

database connection object

Value

the current values in the methodname column of the methods table

Examples

db <- create_sqlite(connect = TRUE) db_describe_method(db, methodname = "new method", methodcode = "method1", methodtypecv = "fieldActivity")
#> new method has been added to the Methods table.
db_get_methods(db)
#> [1] "method1"