MS access driver
843854Jul 7 2002 — edited Jul 9 2002Hi, i would like to access to a Microsoft Access database but i don�t know where to get for free a driver...Then i think i have to reference it in the classpath, and load the driver , it should be like this:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
and make the conection...
String conString = "jdbc:odbc:Driver{Microsoft Access Driver(*.mdb)};
DBQ= c:/coffee.mdb"; // correct???
Connection con = DriverManager.getConnection(conString);
but have i got to install,configure the driver by control panel window? How do i get it? Thanx in advance.