Re: mapping flat data int list of objects

2010-01-15 Thread Simone Tripodi
Hi Michael, in both iBatis v2 and v3 there are TypeHandlers, well explained in the user guide manuals. If you're using iBatis2, you can find it on page 30; if you're using iBtais3, you can find it on page 13. Hope this helps, Simo On Thu, Jan 14, 2010 at 10:11 PM, Remijan, Michael wrote: > I ha

Re: mapping flat data int list of objects

2010-01-14 Thread Andrea Selva
Hi i use iBatis 2 not 3, and i solved this using a TypeHandlerCallback. 1) in my sqlMapConfig.xml i declared the use of the type handler: 2) i've implemented the iBAtis interface com.ibatis.sqlmap.client.extensions.TypeHandlerCallback and defined the methods to write and read from DB column. I