How can I fetch data from MySQL database in Julia?
It looks like this package provides tools for connecting to any database, including MySQL. However, it looks like assuming I have to first setup ODBC DSN to connect to it (I don't know what it is in the first place, although I've used MySQL for two years). So I tried to configure it by reading this page at MySQL documentation... but hit the wall immediately.
One, I can't find a command named myodbc-installer
in my OS X 10.8.5. Two, there is no such application called ODBC Administrator
, and instead there is ODBC manager
in my system - So I think that documentation is too outdated... right?
Also, even when I opened ODBC manager
and tried to click on Add
on User DSN
tab, there are no driver
detected on the screen. So how can I configure ODBC DSN and make use of MySQL in Julia?
Also, do I have to deal with such a tedious setup process? I'd like to use a package, if any, that is as intuitive and easy to use as RMySQL
package in R, which doesn't force me to care about DSN - any such package in Julia?
I'm on 0.2.0-rc in Julia and already installed the package through Pkg.add("ODBC")
. MySQL version is 5.3.6 and installed via MAMP.
Thanks.