updating mysql connector from v3 to v5 caused Operation not allowed after ResultSet closed exception, why is that?
How should I change my code?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check the source included in the Exception and find out why you use a closed ResultSet.
Check where the ResultSet is created and where it is closed. the method
ResultSet.isClosed()might be helpful for additional log-messages.