Are you able to open the database using plain JDBC in a simple method like this?
publicstaticvoidmain(String[]args){StringconnUrl="jdbc:ucanaccess://C:\\banco\\papuda.mdb;Skipindexes=true;memory=false";Longt0=System.nanoTime();try(Connectionconn=DriverManager.getConnection(connUrl)){System.out.printf("Database opened in %.3f seconds%n",(System.nanoTime()-t0)/1000000000.0);}catch(Exceptione){e.printStackTrace(System.err);}}
If so, how long does it take?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, I'm trying to setup this driver with a simple query, but I'm having Wildfly timeouts.
Error:
Driver configuration:
Query:
Are you able to open the database using plain JDBC in a simple method like this?
If so, how long does it take?