RE: Getting straight at the ResultSet

2007-01-04 Thread Abdullah Kauchali
ResultSet-to-object mapping overhead too – if you don’t need it. Hope that helps, Kind regards, Abdullah _ From: Tegan Clark [mailto:[EMAIL PROTECTED] Sent: Thursday, January 04, 2007 10:02 PM To: user-java@ibatis.apache.org Subject: RE: Getting straight at the ResultSet

RE: Getting straight at the ResultSet

2007-01-04 Thread Damien McCarthy
using ibatis at all? Just use a direct JDBC connection. Damien From: Tegan Clark [mailto:[EMAIL PROTECTED] Sent: 04 January 2007 20:02 To: user-java@ibatis.apache.org Subject: RE: Getting straight at the ResultSet Damien/Larry, Thanks for the reply. I've looked at RowHandler,

RE: Getting straight at the ResultSet

2007-01-04 Thread Daniel Pitts
04, 2007 12:02 PM To: user-java@ibatis.apache.org Subject: RE: Getting straight at the ResultSet Damien/Larry, Thanks for the reply. I've looked at RowHandler, and unless I'm missing something iBATIS is still controlling the iteration and passing me a Map of the underlying data,

RE: Getting straight at the ResultSet

2007-01-04 Thread Tegan Clark
Damien/Larry, Thanks for the reply. I've looked at RowHandler, and unless I'm missing something iBATIS is still controlling the iteration and passing me a Map of the underlying data, i.e. iBATIS first incures the overhead of adapting the ResultSet to the Map, and then I must implement som

RE: Getting straight at the ResultSet

2007-01-04 Thread Damien McCarthy
Hi Tegan, I think the RowHandler interface will provide the functionality you need, this will allow you to iterate the objects. Take a look in p61 of the developer handbook for a nice example Damien. Ps. The Handbook is at : http://ibatis.apache.org/docs/java/pdf/iBATIS-SqlMaps-2_

Re: Getting straight at the ResultSet

2007-01-04 Thread Larry Meadors
Have you tried using a row handler? I have found them to be very efficient working with large datasets. Larry On 1/4/07, Tegan Clark <[EMAIL PROTECTED]> wrote: Hi group; I was wondering if there is any way to receive the ResultSet back straight from iBATIS, i.e. allow iBATIS to do the mapping