如何在 HQL 中获取已删除的行数

我在 HQL 中删除:


String queryText = DELETE FROM Books WHERE author = 'author1'


final Query query = getCurrentSession().createQuery(queryText);


query.executeUpdate();

如何获取查询中删除的行数?


慕斯709654
浏览 125回答 2
2回答

莫回无

该方法executeUpdate返回删除的实体数。n因此,您将通过以下代码获得已删除的行数( ): int n = query.executeUpdate();

慕慕森

PreparedStatement.executeUpdate ()返回受影响的行数。例如:int row =preparedStatement.executeUpdate();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java