Re: Mapping of a Set with enums

2009-05-19 Thread Kai Grabfelder
Hi Mikael, could you try to map creditEvents to a Set of Strings instead and see if this works? Regards Ka --- Original Nachricht --- Absender: Mikael Andersson Datum: 18.05.2009 23:52 Hi I have a typehandler for the enum in the second result map which is referenced from the

date doesn't include hours, minutes, seconds

2009-05-19 Thread MichaelSK
Hello, I’ve a problem with select that is created by IBatis. In my .xml file I’ve the following statement: SELECT b.id, b.id_credit, b.status, b.tag, b.ins_time, b.modif_time FROM ws.vi_batchcompl b dynamic prepend=WHERE isEqual prepend= AND

Re: date doesn't include hours, minutes, seconds

2009-05-19 Thread Nicholoz Koka Kiknadze
IBatis creates this select: to_date('2009-05-15 23.59.59', '-mm-dd hh24.mi.ss') Well, there's no to_date function in your XML, so iBatis can not create it. It only prepares statement (ps) with AND b.ins_time = ? AND b.ins_time = ? and calls ps.setDate Could you re-check your xml

Static classes causing errors?

2009-05-19 Thread Bram Van Dam
Hi folks, I'm creating an sqlmap for a couple of classes I generated with jaxb. Now, jaxb has the dirty habit of creating static inner classes. So instead of having package.foo.Bar and package.foo.Baz, I've got package.foo.Bar and package.foo.Bar.Baz Anyway, that's not really the point. The