Guest User

Untitled

a guest
Jan 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. DB.execute(simpleUpdate)
  2.  
  3. DB.executeQuery(simpleSelect)
  4.  
  5. PreparedStatement deleteStmt = DB.getConnection().prepareStatement(myStatement);
  6. try {
  7. deleteStmt.setString(1, myString);
  8. deleteStmt.executeUpdate();
  9. } finally {
  10. deleteStmt.close();
  11. }
Add Comment
Please, Sign In to add comment