Less Than
The following example shows getting student records who's age less 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[ ]]>
01
<?xml version=
"1.0"
encoding=
"UTF-8"
?>
02
<!DOCTYPE sqlMap
PUBLIC
"-//ibatis.apache.org//DTD SQL Map 2.0//EN"
05
<sqlMap namespace=
"Student"
>
07
<
select
id=
"ageLessThan"
parameterClass=
"int"
08
resultClass=
"com.bethecoder.tutorials.ibatis.common.Student"
>
11
STUDENT_ID
as
studentId,
12
FIRST_NAME
as
firstName,
13
LAST_NAME
as
lastName,
17
FROM
STUDENT
where
AGE <![CDATA[ < ]]> #value#
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 LessThan {
/**
* @param args
* @throws IOException
* @throws SQLException
*/
public static void main ( String [] args ) throws IOException, SQLException {
Reader reader = Resources.getResourceAsReader ( "SqlMapConfig.xml" ) ;
SqlMapClient sqlMapClent = SqlMapClientBuilder.buildSqlMapClient ( reader ) ;
List <Student> studs = ( List<Student> )
sqlMapClent.queryForList ( "Student.ageLessThan" , 25 ) ;
for ( Student stud : studs ) {
System.out.println ( stud ) ;
}
}
}
It gives the following output,
Student[2, Raj, Kumar, 18, Reading books, +914444488888]
Student[3, Ram, Prasad, 24, Painting, +918888888888]
Student[5, Vishal, Pratap, 19, Cricket, +91666666666]