tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 iBATIS > Basics > XML Result

XML Result 

The following example shows using XML result class. It provides a way of serializing results to an XML string. The attribute xmlResultName="STUDENT" allows us to specify the ROOT XML Tag name.

File Name  :  
/IBATIS001/config/basic/XMLResultName.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    <select id="getXMLById" parameterClass="int" resultClass="xml" xmlResultName="STUDENT">
08         
09        SELECT
10            STUDENT_ID as studentId,
11            FIRST_NAME as firstName,
12            LAST_NAME as lastName,
13            AGE as age,
14            PHONE as phone,
15            HOBBY as hobby
16        FROM STUDENT where STUDENT_ID = #value#
17          
18    </select>
19 
20</sqlMap>

File Name  :  
com/bethecoder/tutorials/ibatis/tests/basic/XMLResultName.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.ibatis.common.resources.Resources;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.ibatis.sqlmap.client.SqlMapClientBuilder;

public class XMLResultName {

  /**
   @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);

    String studentXML = (StringsqlMapClent.queryForObject("Student.getXMLById"1);
    System.out.println(studentXML);
    
  }
}
   

It gives the following output,

File Name  :  
/IBATIS001/src/com/bethecoder/tutorials/ibatis/tests/basic/XMLResult.xml 
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<STUDENT>
3    <STUDENTID>1</STUDENTID>
4    <FIRSTNAME>Jim</FIRSTNAME>
5    <LASTNAME>Attic</LASTNAME>
6    <AGE>32</AGE>
7    <PHONE>+919999999999</PHONE>
8    <HOBBY>Painting</HOBBY>
9</STUDENT>



 
  


  
bl  br