Does anyone know what this error indicates?

        SQLException: [Microsoft][ODBC Driver Manager]
        Function sequence error

I get it on the following code:

    rs = stmt.executeQuery( "select someval from sometable" ) ;
    while ( rs.next() ) {
        sTmp = rs.getString( "someval" ) ;
                // do something with sTmp...
        }

It loops through 24-times, prior to giving the error... there are some
30,000 elements in rs.

Ideas?

Phil

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to