为了账号安全,请及时绑定邮箱和手机立即绑定

在 JPA 中使用 nativeQuery 时出现“无法提取 ResultSet”错误

在 JPA 中使用 nativeQuery 时出现“无法提取 ResultSet”错误

芜湖不芜 2023-07-28 16:58:02
我在 SpringBoot 中使用 JPARepository 并使用@Query注释,但出现错误org.springframework.dao.InvalidDataAccessResourceUsageException: could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet当使用nativeQuery=true这是我的功能:@Query(value = "select * from table1 where status = ?1 and time <= ?2 LIMIT 2", nativeQuery = true)     List<MyModel> findScheduledSmsMessages(Status status, LocalDateTime time);
查看完整描述

1 回答

?
潇湘沐

TA贡献1816条经验 获得超6个赞

我在查询上方添加了以下代码并且


@Modifying

  @Transactional


像这样 :


@Modifying

@Transactional

@Query(value = "DELETE FROM played_sheet WHERE user_id =  ?1 AND sheet_music_id = ?2", nativeQuery = true)

void deleteByUserIdAndSheetMusicId(Integer userId,Integer sheetMusicId);



查看完整回答
反对 回复 2023-07-28
  • 1 回答
  • 0 关注
  • 262 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信