<lie>I've never done that before.</lie> ;-)
Larry On Tue, Sep 16, 2008 at 2:56 PM, sjewett <[EMAIL PROTECTED]> wrote: > > Thanks Larry (and Clinton). You both have the same suggestion. I had > already tried this. It wasn't working for me, but I finally figured it out. > The reason it wasn't working is that when I declared and instantiated myRH . > . . I neglected to declare it as Type MyRH . . . so it was acting like my > PostProcessing method was undefined. > > Oops. Thanks for the help! > > > > Larry Meadors wrote: >> >> Not that I know of... >> >> But you could do this: >> >> MyRH myRH = new MyRH(); >> sqlMap.queryWithRH(....); >> myRH.doSomeStuffAfterAllTheDataHasBeenRead(); >> >> If you encapsulate that in a method so it's always done the same, you >> should be golden, no? >> >> Larry >> >> >> On Tue, Sep 16, 2008 at 2:05 PM, sjewett <[EMAIL PROTECTED]> wrote: >>> >>> Hello, >>> >>> Any help is greatly appreciated. I'm using iBATIS 2.1.7. Is there any >>> way, >>> from within the handleRow() method, to determine whether you are on the >>> last >>> (final) row? >>> >>> Thank you >>> -- >>> View this message in context: >>> http://www.nabble.com/In-RowHandler.handleRow%28%29-determine-if-last-record-tp19519525p19519525.html >>> Sent from the iBATIS - User - Java mailing list archive at Nabble.com. >>> >>> >> >> > > -- > View this message in context: > http://www.nabble.com/In-RowHandler.handleRow%28%29-determine-if-last-record-tp19519525p19520248.html > Sent from the iBATIS - User - Java mailing list archive at Nabble.com. > >
