String query = DElETE from Photo where pId = :id and photoName = :name;
getSession().createQuery(query).setParameter("id", id)
.setParameter("name", name).executeUpdate();
从我的应用程序执行时,上述内容不起作用。我从中得到的查询是,
delete from photo where id = 77 and photo_name = '77-Hollywood-Star.jpg';
我什至用过
createSQLQuery(从 id = 77 和 photo_name = '77-Hollywood-Star.jpg' 的照片中删除;)
但没用!
当我在 mysql 中运行时,上述方法有效。