diskcache problem

2009-08-21 Thread Hirotaka Niisato
Hi, I use ibatis 2.3.4 and oscache 2.4. Executing queryForObject, sometime return [SERIALIZABLE_NULL_OBJECT]. In this part, compare object with CacheModel.NULL_OBJECT. com.ibatis.sqlmap.engine.mapping.statement.CachingStatement.executeQueryForObject Object object =

Re: PL/SQL package level variables

2009-08-21 Thread Nicholoz Koka Kiknadze
Honestly, I don't quite understand your config. You have tx:annotation-driven transaction-manager=txManager / So I guess you use annotations to mark transactions. In that case you all that advice/pointcut stuff seems redundant. Now as you do not set proxy-target-class=true dont forget

Re: Feature for iBatis

2009-08-21 Thread Richard Bibb
This works for me. ?xml version=1.0 encoding=UTF-8? !DOCTYPE log4j:configuration SYSTEM log4j.dtd log4j:configuration xmlns:log4j=http://jakarta.apache.org/log4j/; appender name=CONSOLE class=org.apache.log4j.ConsoleAppender layout

Re: Separate iBATIS3 mailing list

2009-08-21 Thread Nicholoz Koka Kiknadze
No reply... Seems separate list idea is soo absurd that no one bothers to explain why ;) On Tue, Aug 18, 2009 at 10:00 PM, Nicholoz Koka Kiknadze kikna...@gmail.com wrote: I've enjoyed much using iBatis and the mailing list was always very helpful. Well, now and then I have to search for

Re: iBATOR+iBATIS generation is successful, but test does not work.

2009-08-21 Thread bhaa
Hi, Jeff Great thanks. Now this is worked! Alexander Jeff Butler-2 wrote: You need to enable statement namespaces. See here for an example: http://ibatis.apache.org/docs/tools/ibator/afterRunning.html Jeff Butler On Thu, Aug 20, 2009 at 3:04 AM, bhaab...@yandex.ru wrote: Hi,

Re: Separate iBATIS3 mailing list

2009-08-21 Thread Larry Meadors
Because it's a bad idea. Happy? Larry On Fri, Aug 21, 2009 at 12:47 AM, Nicholoz Koka Kiknadzekikna...@gmail.com wrote: No reply... Seems separate list idea is soo absurd that no one bothers to explain why ;) On Tue, Aug 18, 2009 at 10:00 PM, Nicholoz Koka Kiknadze kikna...@gmail.com

Re: Separate iBATIS3 mailing list

2009-08-21 Thread Nicholoz Koka Kiknadze
No. Lol On Fri, Aug 21, 2009 at 3:23 PM, Larry Meadors larry.mead...@gmail.comwrote: Because it's a bad idea. Happy? Larry On Fri, Aug 21, 2009 at 12:47 AM, Nicholoz Koka Kiknadzekikna...@gmail.com wrote: No reply... Seems separate list idea is soo absurd that no one bothers to

Re: Separate iBATIS3 mailing list

2009-08-21 Thread Larry Meadors
Heh - I hadn't had my coffee yet. ;-) Here are a few reasons: Pick one or take two, they're small. #1 - It's a bad idea to fragment an already small community (1000 users on the list) because one user doesn't want to get the dozen or so emails a day that the list generates. #2 - Just like

Problem calling Stored function in Oracle

2009-08-21 Thread M V Chetan
Hi, I'm facing certain problems in getting my ibatis mapping to work with an oracle stored function Here is my mapping http://www.nabble.com/file/p25082929/query1.jpg

Re: Separate iBATIS3 mailing list

2009-08-21 Thread Nicholoz Koka Kiknadze
#3 - I think I'm the only person who does moderation on the ibatis lists and don't want another one to manage. (NOTE: If someone wants to do that with me, let me know, it's easy, but when I'm out of the office the please subscribe emails pile up). I'll be out of the office till September 6

Re: Feature for iBatis

2009-08-21 Thread Betto McRose Gamarra
thanks ! I tried but it didn't work again, I forgot to mention ?im using jboss server On Fri, Aug 21, 2009 at 02:46, Richard Bibb richard.b...@aimhedge.comwrote: This works for me. ?xml version=1.0 encoding=UTF-8? !DOCTYPE log4j:configuration SYSTEM log4j.dtd log4j:configuration

Re: Problem calling Stored function in Oracle

2009-08-21 Thread Nicholoz Koka Kiknadze
Though I've never used oraclecursor with iBatis, I'll dare to note that from the image attached I see that parametermap property for the ORALECURSOR is the last one in the map. But it must be the first one (order parameter map properties must match order of ?,?... ). On Fri, Aug 21, 2009 at

Execute multiple statements (pagination query port from oracle to mysql)

2009-08-21 Thread Anoop kumar V
This is an attempt to convert the pagination query using rownum in Oracle to an equivalent pagination query using limit in mysql. I have an existing application that uses an Oracle database in production. I am trying to run the same application using mysql on my laptop. The entire application and