Created
September 20, 2016 22:25
-
-
Save nwillc/26a232500bda8da9b1162c40dc12f563 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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