hi!
I was accessing Access DB without any problem until now and I have this error.
java.sql.SQLException: Failed to load database MSOData! For more information, please use SQLException.getNextException()
It looks like this driver acts strangely....
|
Try:
catch( SQLException sqle )
{
do
{
System.out.println(sqle.getMessage());
System.out.println("Error Code:"+sqle.getErrorCode());
System.out.println("SQL State:"+sqle.getSQLState());
sqle.printStackTrace();
}while((sqle=sqle.getNextException())!=null);
}
I guess that your MSOData databse is an encrypted mdb database, or HXTT Access failed to check the integrality of that database so it refused to load it.
|