Re: iBATIS 3 dynamic sql 'foreach' list got problem.

2010-06-08 Thread Larry Meadors
The ibatis project has moved and been renamed. It is no longer being maintained as an Apache project, but has moved (along with the development team) here: http://www.mybatis.org/ Please join us at the new location by joining the mailing list here: http://groups.google.com/group/mybatis-user L

Re: iBATIS 3 dynamic sql 'foreach' list got problem.

2010-06-08 Thread bruce666
and how to foreach a enum list when using sqlmap? bruce666 wrote: > > I am used ibatis 3.0 GA; > > those are my JavaBean classes, > > public class SearchObject { > private Long id; > private List childIdList = new ArrayList(); > public Long getId() { > return id; > } > public voi

iBATIS 3 dynamic sql 'foreach' list got problem.

2010-06-08 Thread bruce666
I am used ibatis 3.0 GA; those are my JavaBean classes, public class SearchObject { private Long id; private List childIdList = new ArrayList(); public Long getId() { return id; } public void setId(Long id) { this.id = id; } public List getChildIdList () { return ch