Monthly Archives: June 2011

Streaming ResultSets with the MySQL JDBC Driver

By | June 3, 2011

When you use the MySQL JDBC driver to select rows from a table, the connection will block until the entire ResultSet has been pulled over to the client. In most cases this makes sense, especially if the server is on a different host. Retrieving the entire ResultSet will minimize the number of TCP packets that… Read More »