dbGetQuery {Rdbi} | R Documentation |
dbGetQuery
is a generic function that, when called on a valid
connection object, executes a query and returns a dataframe with the
query results, or an error if no results were generated.
dbGetQuery(conn, ...)
conn |
A database connection object |
... |
Arguments that when pasted together form a query string |
Simply calls dbSendQuery
and dbGetResult
.
A dataframe with the results.
Timothy H. Keitt
dbConnect
, dbGetResult
,
methods, class
, paste