Hello, I'm facing a weird problem when resultType is a Map :
<select id="test" resultType="java.util.LinkedHashMap"> select getDate() "Timestamp", null "Test" </select> List<LinkedHashMap<Object, Object>> lignes = session.selectList("test"); for (Iterator it = ((LinkedHashMap<Object, Object>) lignes.get(0)).keySet().iterator(); it.hasNext();) System.out.println(it.next()); The result is : TIMESTAMP Timestamp 1 Why is first column duplicated when the alias is in lowercase ? And why can't i get the second column header when it contains null values ? Any help would be appreciated. Thx. --------------------------------------------------------------------- To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail: user-java-h...@ibatis.apache.org