We have been testing the DBF driver and would like to output some further information, is there a way we can gain more debugging information from the driver?
Any help would be appreciated
Many thanks
Tony Burgess
|
No way to get more information than catch SQLException:
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);
}
SQL States is useful too.
|
If you met issue or have question, please let us know.
|