Export to Access {GCDkit} | R Documentation |
This function serves for exporting the specified data into MDB (MS Access) format (via the ODBC interface).
accessExport(what=cbind(labels, WR), tablename=NULL, transpose=FALSE,dec.places=NULL)
what |
a matrix, data frame or a list |
tablename |
name of the data table |
transpose |
logical; transpose the data? |
dec.places |
numeric; number of decimal places |
The function accessExport
outputs the specified data via Microsoft's ODBC
interface, taking an advantage of the library RODBC
. Unlike for the
function 'excelExport
', ODBC makes possible opening a new file.
If the argument what
is a matrix or data frame, the name of the table
can be specified using the optional parameter tablename
.
For a list, several tables are created, their number and names corresponding to the items present.
None.
This function is not available on 64-bit systems!
The RODBC package was written by Brian Ripley.
Vojtěch Janoušek, vojtech.janousek@geology.cz
'excelExport
' 'dbfExport
'
## Not run: accessExport(results) # Saves the last calculated results ## End(Not run)