On 06/08/15 16:05, Евгений =) wrote:
ResultSet rs = qExec.execSelect();

You can't iterator and update at the same time.

So read the results once and then loop on the copy:

    ResultSet rs = ResultSetFactory.copyResults(qExec.execSelect());

        Andy

Reply via email to