In my JSP page, I got a resultset rs from
a servlet via JDBC-ODBC:

        ResultSet rs;
        %><P>This is a list of all books: <P><%
        rs = dtrans.getBooksSortedByAuthor();
        if (rs != null) {
            rs.next();
         ... ...

I know that rs does have 10 records in it.
The JSP page displays this error at rs.next():

Database Problem: java.sql.SQLException: [Microsoft][ODBC Microsoft Access
Driver]Function sequence error

Does anyone ever see this "Function sequence error" ?

Any hint is appreciated.
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to