RQDAQuery {RQDA} | R Documentation |
Submits and executes an arbitrary SQL statement on the open *.rqda file.
RQDAQuery(sql)
sql |
a character vector of length 1 with the SQL statement. |
It is a wrapped version of dbSendQuery-methods
, to make it more
convenient to submit and execute a SQL statement.
The same of dbSendQuery-methods
, possible NULL (for the side effects of
sql on the *.rqda file) or a data.frame with the output (if any) of
the query.
HUANG Ronggui
See Also as dbSendQuery-methods
## Not run: RQDAQuery("select name from source where status=1") ## End(Not run)