RE: SPAM-HIGH: [vote] Promote DataMapper 1.6 to General Availability

2009-08-03 Thread Erin Rollenhagen
+1 Erin Rollenhagen -Original Message- From: Michael McCurrey [mailto:mmccur...@gmail.com] Sent: Monday, August 03, 2009 8:41 AM To: user-cs@ibatis.apache.org Subject: SPAM-HIGH: [vote] Promote DataMapper 1.6 to General Availability Sorry for the delay in calling the vote - lot of stuff

Re: [vote] Promote DataMapper 1.6 to General Availability

2009-08-03 Thread Michael Schall
+1 On Mon, Aug 3, 2009 at 9:01 AM, Vincent Apesavincent.ap...@gmail.com wrote: +1 On Mon, Aug 3, 2009 at 9:40 AM, Michael McCurrey mmccur...@gmail.com wrote: Sorry for the delay in calling the vote - lot of stuff going on. Since there have been no major issues reported, I would like to

Use list of objects as parameter?

2009-08-03 Thread sanjeev40084
I have a query which returns lists of object(id, name). Can i pass this object in my ibatis and use it as parameter. i.e select employee, year, department from Employee Where EmployeeID = #id--id is from the list which i populated earlier Any clue?? -- View this message in context:

Re: Use list of objects as parameter?

2009-08-03 Thread Juan Pablo Araya
Never used something like that, but there is an iterate tag for dynamic sql. In your case and in my opinion the best solution is through a join: select * from employee where employeeid in (select id, name from your other query) Greetings! Greetings! On Mon, Aug 3, 2009 at 12:41 PM, sanjeev40084