qryflow_parse | R Documentation |
qryflow_parse()
reads a SQL workflow file or character vector and parses it into
discrete tagged chunks based on @query
, @exec
, and other custom markers.
qryflow_parse(sql)
sql |
A file path to a SQL workflow file, or a character vector containing SQL lines. |
This function is used internally by qryflow_run()
, but can also be used directly to
preprocess or inspect the structure of a SQL workflow.
An object of class qryflow_workflow
, which is a structured list of SQL chunks and
metadata.
qryflow()
, qryflow_run()
, qryflow_execute()
filepath <- example_sql_path("mtcars.sql")
parsed <- qryflow_parse(filepath)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.