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.