Is there an easy way to make data from a MySQL DB accessible via a web interface? Is there a package that will translate programmatic HTTP queries into CSV files?
I would like to make R scripts available to others in my lab, but the scripts depend upon data from a mySQL database. The barrier to entry for RMySQL is relatively high for the average Windows machine [download & install mysql client access, install the RTools package , install the source of RMySQL, test it and deal with the inevitable problems.]
Is there a package that will translate programmatic HTTP queries into CSV files? That way I can simply embed URLs in my R scripts to get the data without having to modify all the clients.
It looks like DBSlayer is one option. I thought of using PHPMyAdmin but that really seems to be meant for administrative tasks, not a database proxy.
Any common options out there?