Get information about truffles associated with an oak tree
get_info_chene_truffe.Rd
This function retrieves information about truffles associated with a specific oak tree based on the oak tree's ID from the provided truffle database.
Value
A list containing information about truffles associated with the oak tree, including the total weight, date of the last truffle found, and any comments.
Examples
conn <- DBI::dbConnect(
RSQLite::SQLite(),
system.file(dbname = "chenes_truffe.sqlite", package = "truffles")
)
truffe <- DBI::dbReadTable(conn, name = "truffe")
get_info_chene_truffe(dbtruffe = truffe, theidoak = "119")
#> $weight_tot
#> [1] 0
#>
#> $derniere_truffe
#> [1] "-"
#>
#> $last_comment
#> [1] "-"
#>
#> $other_comments
#> [1] "-"
#>
DBI::dbDisconnect(conn)