Export to Access {GCDkit}R Documentation

Export to Access

Description

This function serves for exporting the specified data into MDB (MS Access) format (via the ODBC interface).

Usage

accessExport(what=cbind(labels, WR), tablename=NULL,
transpose=FALSE,dec.places=NULL)

Arguments

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

Details

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.

Value

None.

Warning

This function is not available on 64-bit systems!

Author(s)

The RODBC package was written by Brian Ripley.

Vojtěch Janoušek, vojtech.janousek@geology.cz

See Also

'excelExport' 'dbfExport'

Examples

    ## Not run: 
        accessExport(results) # Saves the last calculated results
    
## End(Not run)

[Package GCDkit version 6.1 Index]