RQDAQuery {RQDA}R Documentation

Execute a SQL statement on the open *.rqda file.

Description

Submits and executes an arbitrary SQL statement on the open *.rqda file.

Usage

RQDAQuery(sql)

Arguments

sql a character vector of length 1 with the SQL statement.

Details

It is a wrapped version of dbGetQuery, to make it more convenient to submit and execute a SQL statement.

Value

The same of dbGetQuery, possible NULL (for the side effects of sql on the *.rqda file) or a data.frame with the output (if any) of the query.

Author(s)

HUANG Ronggui

See Also

See Also as dbGetQuery

Examples

## Not run: 
RQDAQuery("select name from source where status=1")
## End(Not run)

[Package RQDA version 0.1-7 Index]