I am using Jdbctemplate to retrieve a single String value from the db. Here is my method.
public String test() { String cert=null; Strin
For Byron, you can try this..
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 li = jdbcTemplate.queryForList(sql,String.class); return li.get(0).toString(); }