I'm currently using JDBC with MySQL, and I'm wondering whether there is a limit on the number of ResultSet objects which can be open at a given time. I wasn't able to find an answer anywhere else on SO or in the documentation.
I'm asking because my program can potentially generate and manipulate a fairly high number of these ResultSets, and I'm afraid of any consequences this could have. My alternative to this would be to create a set of classes which mimics the ResultSet methods which I need, however this would require such a class for every table in my database (and I have many of them).