Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have MySQL tables and I have to execute several queries on them. I created my connection with the DriverManager, initialized my statement (connection.createStatement()), built my query and executed my query: .executeQuery(query). Works perfectly.

But when I want to repeat this several times, I get an error.

I tried to add allowMultiQueries properties to the jdbc URL but it didn't work.

So I'm wondering if it's possible to repeat those steps and store all the resultset in a Map for example.

share|improve this question
Might be easier to understand if you'd just post the essential bits of your code. – Russ Bateman May 25 '11 at 16:09
Sure but it was just a theorical question :s In fact, I found a solution: I create 1 connection and 1 statement for each query :s a little dirty but it works :p Thanks anyway^^ – Jérémy Reynard May 26 '11 at 15:01
You should still be able to reuse the connection. @Jérémy Reynard: can you please answer the question yourself and then accept that answer? Also, you need to accept answers to previous questions if they fix your problem. – Zecas May 16 '12 at 14:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.