Description Usage Arguments Value Examples
When x64 Access driver is missing, you cannot directly fetch data from MS Access
using RODBC right now. This is a work-around function to initiate an
independent x86 R session to fetch the data, and save the data.frames as an
acc32.Rdata
file in your work directory.
1 2 | queryAccess32(db.path, pwd = NULL, qry.tbl = NULL, out.names = NULL,
silent = FALSE)
|
db.path |
charcter, MS Access db full path |
pwd |
character, the password to the Access db if applicable. If there is no password, set it NULL (default). |
qry.tbl |
character vector, SQL queries or tables name. |
out.names |
character vector, names of the output objects. Must be of the same length as qry.tbl. |
silent |
logical, if avoid any message. Deafult FALSE. |
An Rdata file (acc32.Rdata) in your work directory.
1 2 3 4 | ## Not run:
queryAccess32("~/test.accdb", qry.tbl=c("User", "select * from Deal;"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.