Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Jdbctemplate to retrieve a single String value from the db. Here is my method.

    public String test() {
        String cert=null;
        String sql = "select ID_NMB_SRZ from codb_owner.TR_LTM_SLS_RTN 
             where id_str_rt = '999' and ID_NMB_SRZ = '60230009999999'";
        cert = (String) jdbc.queryForObject(sql, String.class); 
        return cert;
    }

In my scenario it is complete possible to NOT get a hit on my query so my question is how do I get around the following error message.

EmptyResultDataAccessException: Incorrect result size: expected 1, actual 0

It would seem to me that I should just get back a null instead of throwing an exception. How can I fix this? Thanks in advance.

share|improve this question

5 Answers

up vote 20 down vote accepted

In JdbcTemplate , queryForInt, queryForLong, queryForObject all such methods expects that executed query will return one and only one row. If you get no rows or more than one row that will result in IncorrectResultSizeDataAccessException . Now the correct way is not to catch this exception or EmptyResultDataAccessException, but make sure the query you are using should return only one row. If at all it is not possible then use query method instead.

List<String> strLst  = getJdbcTemplate().query(sql,
            new RowMapper {
public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
        return rs.getString(1);
            }
});


if ( strLst.isEmpty() ){
  return null;
}else if ( strLst.size() == 1 ) { // list contains exactly 1 element
  return strLst.get(0);
}else{  // list contains more than 1 elements
  //your wish, you can either throw the exception or return 1st element.

}
share|improve this answer
Thanks @Rakesh, this solution worked. Much cleaner. – Byron May 16 '12 at 16:10
As mentioned below, the only drawback here is that if the return type was a complex type you would be building multiple objects and instantiating a list, also ResultSet.next() would be called unnecessarily. Using a ResultSetExtractor is a much more efficient tool in this case. – Brett Ryan May 6 at 0:52

That's not a good solution because you're relying on exceptions for control flow. In your solution it's normal to get exceptions, it's normal to have them in the log.

public String test() {
    String sql = "select ID_NMB_SRZ from codb_owner.TR_LTM_SLS_RTN where id_str_rt = '999' and ID_NMB_SRZ = '60230009999999'";
    List<String> certs = jdbc.queryForList(sql, String.class); 
    if (certs.isEmpty()) {
        return null;
    } else {
        return certs.get(0);
    }
}
share|improve this answer
queryForObjectList is not an option in Springframework. – Byron May 15 '12 at 22:54
my solution might not be the most elegant but at least mine works. You give an example of queryForObjectList which is not even an option with Jdbctemplate. – Byron May 15 '12 at 23:11
Sorry, it's #queryForList – Philippe Marschall May 16 '12 at 5:27
Only drawback here is that if the return type was a complex type you would be building multiple objects and instantiating a list, also ResultSet.next() would be called unnecessarily. Using a ResultSetExtractor is a much more efficient tool in this case. – Brett Ryan May 6 at 0:51

You could use a group function so that your query always returns a result. ie

MIN(ID_NMB_SRZ)
share|improve this answer

You may also use a ResultSetExtractor instead of a RowMapper. Both are just as easy as one another, the only difference is you handle the ResultSet.next().

public String test() {
    String sql = "select ID_NMB_SRZ from codb_owner.TR_LTM_SLS_RTN "
                 + " where id_str_rt = '999' and ID_NMB_SRZ = '60230009999999'";
    return jdbc.query(sql, new ResultSetExtractor<String>() {
        @Override
        public String extractData(ResultSet rs) throws SQLException,
                                                       DataAccessException {
            return rs.next() ? rs.getString("ID_NMB_SRZ") : null;
        }
    });
}

The ResultSetExtractor has the added benefit that you can handle all cases where there are more than one rows or no rows returned.

Using with other types is also quite simple, the only caveat being that you can't reuse the same ResultSetExtractor for where both a list and a single object must be returned.

share|improve this answer

Ok, I figured it out. I just wrapped it in a try catch and send back null.

    public String test() {
            String cert=null;
            String sql = "select ID_NMB_SRZ from codb_owner.TR_LTM_SLS_RTN 
                     where id_str_rt = '999' and ID_NMB_SRZ = '60230009999999'";
            try {
                Object o = (String) jdbc.queryForObject(sql, String.class);
                cert = (String) o;
            } catch (EmptyResultDataAccessException e) {
                e.printStackTrace();
            }
            return cert;
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.