I had a Access 2000 database connection working on IIS on Windows 2000 that is using a JSP engine. Everything worked with my databases until this morning.
Now all of a suddent I get and error message on my JSP action page:
I am using this connection object:
Now if I change the action page to a Cold Fusion page where I use a Cold Fusion ODBC it works.
What can I do to correct the JSP JDBC on the server? Are there any settings that can be reset? It seems to give me the error message on all my databases with JSP.
Now all of a suddent I get and error message on my JSP action page:
Code:
[Microsoft][ODBC Microsoft Access Driver] System Resource exceeded.
I am using this connection object:
Code:
Connection connection = DriverManager.getConnection("jdbc:odbc:myDatabaseName", "", "");
Now if I change the action page to a Cold Fusion page where I use a Cold Fusion ODBC it works.
What can I do to correct the JSP JDBC on the server? Are there any settings that can be reset? It seems to give me the error message on all my databases with JSP.