Skip to content

Instantly share code, notes, and snippets.

@herhor
Created June 10, 2015 20:35
Show Gist options
  • Save herhor/6107367338853bae13f7 to your computer and use it in GitHub Desktop.
Save herhor/6107367338853bae13f7 to your computer and use it in GitHub Desktop.
AAL2.adhocJdbcTemplate.java
JdbcTemplate jdbc = new JdbcTemplate(dataSource);
jdbc.setFetchSize(200);
jdbc.query("select a, b, c from table",
new RowCallbackHandler() {
@Override
public void processRow(ResultSet rs) throws SQLException {
...
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment