Skip to content

Instantly share code, notes, and snippets.

@herhor
Created June 10, 2015 20:35
Show Gist options
  • Save herhor/d5c967d0d3356577ab3f to your computer and use it in GitHub Desktop.
Save herhor/d5c967d0d3356577ab3f to your computer and use it in GitHub Desktop.
AAL1.standardJdbcAPI.java
PreparedStatement stmt = null;
ResultSet rs = null;
try {
stmt = conn. prepareStatement("select a, b, c from table");
stmt.setFetchSize(200);
rs = stmt.executeQuery();
while (rs.next()) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment