public class DBtest
{
public static void main(String args[])
{
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}
catch (Exception e)
{
System.out.println("JDBC-ODBC driver failed to load.");
return;
}
}
}
Showing Exception Message
"JDBC ODBC Driver failed to load"
I have 2 questions 1-Where This JdbcOdbcDriver can be foud for MS ACCESS ? 2-If MS access Drier option in Administrative tool -> ODBC(64-bit)-> System DSN->Select Driver indicate the JDBC ODBC driver for connectivity then why it is not connecting