java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver Exception occurring. Why?

I have created an MS Access database and assigned a DSN to it. I want to access it through my Java application. This is what I am doing: public class AccessDbConnection { public static void main(String[] args) { System.out.println(“**ACCESS DB CONNECTION**”); try { Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”); // for MS Access … MS access driver loading String conURL … Read more