qryflow_results | R Documentation |
qryflow_workflow
objectqryflow_results()
retrieves the query results from a list returned by qryflow_run()
,
typically one that includes parsed and executed SQL chunks.
qryflow_results(x, ..., simplify = FALSE)
x |
Results from |
... |
Reserved for future use. |
simplify |
Logical; if |
A named list of query results, or a single result object if simplify = TRUE
and only one result is present.
qryflow()
, qryflow_run()
con <- example_db_connect(mtcars)
filepath <- example_sql_path("mtcars.sql")
obj <- qryflow_run(filepath, con)
results <- qryflow_results(obj)
DBI::dbDisconnect(con)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.