Re: Duplicate CacheKey with several query parameters value on null (IBATIS-663)

2009-11-09 Thread fcarballo
Hey, no one found any solution to this? I really think that this is a serious bug. I'm using an ad-hoc version of ibatis, with this class modified. But I'll be glad to get this fix on a release version. fcarballo wrote: > > I'm having a problem with cached stored procedures call, using null > p

Duplicate CacheKey with several query parameters value on null (IBATIS-663)

2009-09-24 Thread fcarballo
I'm having a problem with cached stored procedures call, using null parameters. When I call a stored procedure like: "call user.some_sp(?,?)" I get the same cacheKey for parameters: [1, null] and [null, 1] I think that the problem is in class com.ibatis.sqlmap.engine.exchange.BaseDataExchange on m

Duplicate CacheKey with several query parameters value on null (IBATIS-663)

2009-09-23 Thread Fernando Carballo
I'm having a problem with cached stored procedures call, using null parameters. When I call a stored procedure like: "call user.some_sp(?,?)" I get the same cacheKey for parameters: [1, null] and [null, 1] I think that the problem is in class com.ibatis.sqlmap.engine.exchange.BaseDataExchange on me