This might be a stupid question but I have spent 2 hours looking for the solution and still not found anything.
I have this :
String query = "SELECT i.id, i.title FROM mil..."'";
ResultSet result = preparedStatement.executeQuery();
And I need the number of results fetched.
How can I do ?
Thank you