Set your resultClass to java.lang.Integer.  With your current setup, you are asking iBATIS to return a List of Lists.
 
Jeff Butler

 
On 9/13/06, Okan Çetin <[EMAIL PROTECTED]> wrote:
Hi all;

I want to get some data from database that using ibatis

The code:

Integer user_id=usr.getuser_id ();
List list=sqlMapper.queryForList("getEventidFromAttendance",user_id);

And the xml file is:

..
<select id="getEventidFromAttendance" parameterClass="int" resultClass="java.util.List">
    select event_id from PUBLIC.attendance
    where user_id = #user_id#
 </select>
..

The problem:
String sample=list.get(0).toString();
sample contains : []
but its value must be a integer, like 5,10...
But the value of list.size(), is correct.

Where is my fault?

Thanks.
Okan.

Reply via email to