首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Access >

EmptyResultDataAccessException错误

2012-10-14 
EmptyResultDataAccessException异常使用spring的JdbcTemplate.queryForObject(String sql,RowMapper row)

EmptyResultDataAccessException异常
使用spring的JdbcTemplate.queryForObject(String sql,RowMapper row)方法时,其他情况没什么问题,但是当数据库记录为空时,会抛出EmptyResultDataAccessException异常,原来以为spring把这些异常都封装好了,在网络上搜索答案,原来这个问题遇到的人还不少,但没有好的解决办法,只能catch异常,返回null或其他。

官网社区有帖子建议:

Use the query method instead of queryForObject. It would be better to post questions like this on the Data Access forum.

热点排行