~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-importexport/src/main/resources/sqlmap/dataSetMember.sqlmap.xml

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8" ?>
 
2
 
 
3
<!DOCTYPE sqlMap
 
4
        PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
 
5
        "http://ibatis.apache.org/dtd/sql-map-2.dtd">
 
6
 
 
7
<sqlMap namespace="dataSetMemmber">
 
8
        
 
9
        <!-- ResultMap -->
 
10
        
 
11
        <resultMap class="groupMemberAssociation" id="dataSetMemberAssociationResultMap">
 
12
                <result property="groupId" column="DataSetID"/>
 
13
    <result property="memberId" column="DataElementID"/>
 
14
  </resultMap>
 
15
  
 
16
        <!-- Statement -->
 
17
        
 
18
        <select id="getDataSetMembers" resultMap="dataSetMemberAssociationResultMap">
 
19
                        SELECT * FROM DataSetElement
 
20
        </select>
 
21
        
 
22
</sqlMap>