ResultSet-to-object mapping overhead
too if you dont 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
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,
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,
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
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_
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