Guys Here's what I am having. The current error is
javax.servlet.ServletException: java.sql.SQLException: [Microsoft][ODBC Driver Manager] Invalid cursor state
and this is the piece of work thats causing the error
String query3 = "SELECT Last(threadID) AS thread2 FROM msthread";
ResultSet rs = stmt.executeQuery(query3);
rs.getString("thread2");
The result of that query is only to return 1 column and 1 row, ran it through MSAccess and it showed exactly what I wanted to see.
This is exactly what it looks like:
thread2
43
But now I kept getting the Invalid Cursor State error. I have no idea why.
Thanks for the help guys