> > > > > > > > I had this problem sometimes too... > > I my case it was, that the name of the error messages has > changed, here > some examples: > > "Result set is positioned after last row." > "Result set positioned after last row." > "ResultSet positioned after last row" > > This are the error messages for one error, i saved since i > work with the > SAP DB. > > HTH > Andreas
Hello, this simply means you called a method that you should not call when not being on a row in the result set - as defined by JDBC. Former versions of the driver might have been at some point not so fussy, and simply did nothing instead of bailing out with that exception. "Result set is positioned after last row." is all you should see from a 7.4. driver - the message handling was centralized since 7.3, and only this variant did survive. Regards Alexander Schr�der SAP Labs Berlin > > > > > _______________________________________________ > sapdb.general mailing list > [EMAIL PROTECTED] > http://listserv.sap.com/mailman/listinfo/sapdb.general > _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
