Ibatis project moved to Google. If I am not mistaking, the developers of iBATIS are not registered to this list anymore. Please, post your questions to the new list at [email protected]
Christian -----Original Message----- From: Laurent MANNS [mailto:[email protected]] Sent: Monday, July 05, 2010 4:58 AM To: [email protected] Subject: Ibatis 3 and null values 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: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
