connecting to MS-Access 97 database
Iam working on Windows 95 and trying to connect to
MS-Access 97 database using the following code:
String url = "jdbc:odbc:MS Access 97
Database;DBQ=c:\\utuGatewayCtl\\HEM0000101.MDB";
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection(url);
and Iam getting the following error mesage:
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] '(unknown)' is
not a valid path. Make sure that the path name is spelled correctly and that yo
u are connected to the server on which the file resides.
Can anyone help me?

