Guest User

Untitled

a guest
Jun 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @SneakyThrows
  2. public SQLTable performQuery() {
  3. @Cleanup Connection conn = null;
  4. conn = getConnection();
  5. PreparedStatement ps = conn.prepareStatement("");
  6. @Cleanup ResultSet res = ps.executeQuery();
  7. while(res.next()) {
  8. }
  9. }
Add Comment
Please, Sign In to add comment