I have a Java application that uses a Statement to execute a query that should return about 100,000 records. I iterate over the ResultSet, calling the next method to retrieve each record. The number of records I receive varies from one execution to another. No exception is thrown, the next method simply returns null.
What could explain this behavior?
ResultSet.next()cannot return null, since it returns a boolean. Do you mean it returnsfalse? – Paul Tomblin Jun 29 '10 at 20:22