I am trying to make an update query in my managed bean. Here is the code:
try { PreparedStatement checkDB1 = (PreparedStatement) con.prepareStatement(\"up
Try using executeUpdate instead of executeQuery. I have seen strange problem with executeQuery while doing a db update.