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

Greater Than 

The following example shows getting student records who's age greater than specified value. The attribute parameterClass="int" allows us to pass student age as parameter which would substitute #value# in the SQL. Since SQLMap is an XML document the symbols <, >, etc. cannot be used directly. We need to embed such symbols inside <![CDATA[ ]]>

File Name  :  
/IBATIS001/config/basic/GetAllGreaterThan.xml 

File Name  :  
com/bethecoder/tutorials/ibatis/tests/basic/GreaterThan.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.ibatis.tests.basic;

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

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 GreaterThan {

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

    List <Student> studs = (List<Student>
      sqlMapClent.queryForList("Student.ageGreaterThan"25);

    for (Student stud : studs) {
      System.out.println(stud);
    }    
  }
}
   

It gives the following output,
Student[1, Jim, Attic, 32, Painting, +919999999999]
Student[4, Arjun, Mishra, 28, Football, +917777777777]



 
  


  
bl  br