tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 iBATIS > Basics > Entity Select Parameter Map

Entity Select Parameter Map 

The following example shows using select parameter map. It lets the user to map properties from a java object. Note that map properties are substituted in place of ? in SQL in the same order.

File Name  :  
/IBATIS001/config/basic/SelectParameterMap2.xml 
01<?xml version="1.0" encoding="UTF-8"?>
02<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
04 
05<sqlMap namespace="Student">
06 
07    <parameterMap class="com.bethecoder.tutorials.ibatis.common.Student" id="nameParamMap">
08        <parameter property="firstName" />
09        <parameter property="lastName" />
10    </parameterMap>
11     
12    <select id="getByName" parameterMap="nameParamMap"
13        resultClass="com.bethecoder.tutorials.ibatis.common.Student">
14 
15        SELECT
16            STUDENT_ID as studentId,
17            FIRST_NAME as firstName,
18            LAST_NAME as lastName,
19            AGE as age,
20            PHONE as phone,
21            HOBBY as hobby
22        FROM STUDENT where FIRST_NAME = ? AND LAST_NAME = ? 
23 
24    </select>
25 
26</sqlMap>

File Name  :  
com/bethecoder/tutorials/ibatis/tests/basic/SelectParameterMap2.java 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
   
package com.bethecoder.tutorials.ibatis.tests.basic;

import java.io.IOException;
import java.io.Reader;
import java.sql.SQLException;

import com.bethecoder.tutorials.ibatis.common.Student;
import com.ibatis.common.resources.Resources;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.ibatis.sqlmap.client.SqlMapClientBuilder;

public class SelectParameterMap2 {

  /**
   @param args
   @throws IOException 
   @throws SQLException 
   */
  public static void main(String[] argsthrows IOException, SQLException {

    Reader reader = Resources.getResourceAsReader("SqlMapConfig.xml");
    SqlMapClient sqlMapClent = SqlMapClientBuilder.buildSqlMapClient(reader);

    Student student = new Student();
    student.setFirstName("Ram");
    student.setLastName("Prasad");
    
    student = (StudentsqlMapClent.queryForObject("Student.getByName", student);
    System.out.println(student);
  }
}
   

It gives the following output,
Student[3, Ram, Prasad, 24, Painting, +918888888888]



 
  


  
bl  br