Mysql
 sql >> Database >  >> RDS >> Mysql

Come utilizzare RMySQL in Windows?

Non è disponibile un binario di Windows per il pacchetto RMySQL . Ciò significa che dovrai installare questo pacchetto dal sorgente e compilarlo da solo.

Al CRAN RMySql pagina noterai che non è disponibile alcun file binario, con un link a Pacchetti binari precompilati per R-2.14.x per Windows

Da questa pagina:

Packages related to many database system must be linked to the exact 
version of the database system the user has installed, hence it does 
not make sense to provide binaries for packages
    RMySQL, ROracle, ROracleUI,
although it is possible to install such packages from sources by
    install.packages('packagename', type='source')
after reading the manual 'R Installation and Administration'.

Quindi, leggi i manuali, in particolare R Installazione e amministrazione , installa RTools e quindi usa:

install.packages('RMySQL', type='source')