Skip to content

Instantly share code, notes, and snippets.

@bjpeterdelacruz
Last active December 27, 2015 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjpeterdelacruz/5a3370565d9c871373e9 to your computer and use it in GitHub Desktop.
Save bjpeterdelacruz/5a3370565d9c871373e9 to your computer and use it in GitHub Desktop.
String update = "UPDATE table SET file = ? WHERE id = '1'";
PreparedStatement stmt = conn.prepareStatement(update);
stmt.setBytes(1, bytes);
return stmt.executeUpdate() > 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment