qryflow_results {qryflow} | R Documentation |
Extract results from a qryflow_workflow
object
Description
qryflow_results()
retrieves the query results from a list returned by qryflow_run()
,
typically one that includes parsed and executed SQL chunks.
Usage
qryflow_results(x, ..., simplify = FALSE)
Arguments
x |
Results from |
... |
Reserved for future use. |
simplify |
Logical; if |
Value
A named list of query results, or a single result object if simplify = TRUE
and only one result is present.
See Also
Examples
con <- example_db_connect(mtcars)
filepath <- example_sql_path("mtcars.sql")
obj <- qryflow_run(filepath, con)
results <- qryflow_results(obj)
DBI::dbDisconnect(con)
[Package qryflow version 0.1.0 Index]