Hi All, I am new to iBatis. Can someone please tell me what the bolded ones do in the below example?
1). <sqlMap> <resultMap id="map1" class="com.xyz.Messages"> <result property="fileName" column="FILE_NAME"/> <result property="title" column="TITLE"/> </resultMap> <select id="getMessages" parameterClass="java.lang.String" resultMap="map1"> some select query </select> <sqlMap> What is map1? Does the query result get stored in a map something? How do I view it or retrieve it? When I did search file for map1 (Took it as an example) on Eclipse in my entire source code, I am unable to find it. 2). getSqlMapClientTemplate().queryForList(getMessages, key); I know that the getMessages is the query name and using which a particular query is identified. But how is the key used? Can someone give a simple example? Thanks -- View this message in context: http://www.nabble.com/What-does-th-following-do--tp22878781p22878781.html Sent from the iBATIS - Dev mailing list archive at Nabble.com.