Skip to content

Instantly share code, notes, and snippets.

@nwillc
Created September 20, 2016 22:25
Show Gist options
  • Save nwillc/26a232500bda8da9b1162c40dc12f563 to your computer and use it in GitHub Desktop.
Save nwillc/26a232500bda8da9b1162c40dc12f563 to your computer and use it in GitHub Desktop.
BiFunction<ResultSet, Integer, String> STRING = (r, i) -> {
try {
return r.getString(i);
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment