Site navigation
an ODBC driver?
Wolfram Mathematica can use data that can be retrieved through a JDBC connection. For example, you can use Wolfram Mathematica with the Easysoft JDBC-Access Gateway to work with Microsoft Access data.
Install the JDBC-Access Gateway into the default folder.
For installation instructions, refer to the JDBC-Access Gateway documentation.
esmdb.jar
) and Access database paths as appropriate.
Needs["JLink`"]
AddToClassPath["C:\\Program Files\\Easysoft Limited\\Easysoft JDBC-Access Gateway\\Libs\esmdb.jar"];
Needs["DatabaseLink`"];
conn = OpenSQLConnection[
JDBC["easysoft.sql.esMdbDriver",
"jdbc:easysoft:mdb?DBQ=C:/Users/Public/Documents/Northwind.mdb"]]
SQLConnections[]
SQLTables[conn]
CloseSQLConnection[conn];
A list of tables in the Access database is returned.