loop « result « Java Database Q&A





1. looping through result set values    stackoverflow.com

I have a query like this, program is in java

      String querystring1= "SELECT rlink_id, COUNT(*)"
            ...

2. Looping through results of a JDBC request    jmeter.512774.n5.nabble.com

I want to change a JMeter test to make a JDBC request and then loop through the results. Currently the test loops through the information by reading in a file so I thought I would just write the JDBC output to a file. I've tried several listeners for writing the results to a file. It seems I never get ...

3. Looping through result set    coderanch.com

Hello. I have a result set that has a city, state, and zip in it. If there is more than one row in the resultset, I need to compare the city and zip values in the second row, to the city, zip values in the first row. How do I accomplish this in a while(rs.next()) loop? I've tried setting a variable ...