(This article was first published on Sustainable Research » Renglish, and kindly contributed to R-bloggers)
Based on a related post on one of my favorite python-lists I remembered, that I wrote a similar snipplet some time ago.
So if you want to dump your whole MySQL database to csv-files you can recycle the following code:
?Download mysql2cvs.R
1 2 3 4 5 6 7 8 9 | require(RMySQL) m<-MySQL() summary(m) con<-dbConnect(m, dbname = "YOURDB", host="localhost", port=8889, user="YOURUSER", pass="YOURPASS", unix.sock="/Applications/MAMP/tmp/mysql/mysql.sock") # in case you are using MAMP tables<-dbListTables(con) for (i in 1 : length(tables)){ temp<-(dbReadTable(con, tables[i])) write.table(temp, tables[i], row.names=F)} |
This also is a great way to use my new source-code plugin (WP-CodeBox)
Enjoy!
To leave a comment for the author, please follow the link and comment on his blog: Sustainable Research » Renglish.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).