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 ...
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 ...