R CMD INSTALL pkg-name_X.Y-Z.tar.gzFor details, see the R Installation and Administration manual in CRAN and the various
INSTALL files below for compilation
requirements and details.
Rtools, except as noted.
This package is required by all other packages here. It contains R code only.
This binary package was built using the Microsoft Visual C++ compiler.
You will need the Oracle runtime client libraries in order to use it.
Make sure your PATH includes the
$ORACLE_HOME/bin directory.
These binaries include copies of MySQL runtime client libraries
from MySQL in RMySQL's
libs directory. Thus you do not need to
install MySQL on your Windows system in order to use
RMySQL. However, if you
already have MySQL installed, make sure that R picks the
libraries in RMySQL's libs directory (perhaps by
copying libMySQL.dll from RMySQL/libs to
$R_HOME/bin, or
including RMySQL/libs early in your PATH),
otherwise conflicts will most likely cause core dumps.
For details on how to compile RMySQL on windows, see the files
README.windows, configure.win and
src/Makevars.win in the latest source package.
These binaries include the SQLite database engine and are thus self contained (of course, the DBI package is still required).
methods package,
and thus installed as binary images. This means that methods package
in R version 1.8.0 causes the following problem with the
RS-DBI packages:
> m <- dbDriver("MySQL")
> Error in dbDriver("MySQL") : couldn't find function ".valueClassTest"
(the same problem occurs with ROracle and RSQLite).
The following are some workarounds:
export(.valueClassTest)to the file
$R_HOME/src/library/methods/NAMESPACE
where $R_HOME refers to the directory where you have R 1.8.0
installed.