How to use MySQL in R (statistic language) for Windows (7)?
There is no problems then using linux:
install.packages(\'RMySQL\')
library(RMySQL)
...
<
Found solution with help of ran2, who gave me link to common question. The basic process is described here, but there are several hints, So I will describe the whole solution (please change the R version and paths if needed):
C:\Program Files\R\R-2.12.1\etc\Renviron.site and add line like MYSQL_HOME=C:/mysql (path to your mysql files)C:\Program Files\R\R-2.12.1\bin or to windows/system32 directory.install.packages('RMySQL',type='source') and wait while compilation will end.Thanks to all who tried to answer.