You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user-java@ibatis.apache.org by Ben Shory <be...@sapiens.com> on 2008/12/04 17:00:51 UTC

HOLD_CURSORS_OVER_COMMIT

Is there any way to give ibatis some constants for the resultset such as
HOLD_CURSORS_OVER_COMMIT
TYPE_FORWARD_ONLY
CONCUR_READ_ONLY
???

Re: HOLD_CURSORS_OVER_COMMIT

Posted by Jeff Butler <je...@gmail.com>.
You can specify some of the values with the "resultSetType" attribute
of the <select> element.  iBATIS currently supports these values:

FORWARD_ONLY
SCROLL_INSENSITIVE
SCROLL_SENSITIVE

Jeff Butler



On Thu, Dec 4, 2008 at 10:00 AM, Ben Shory <be...@sapiens.com> wrote:
> Is there any way to give ibatis some constants for the resultset such as
> HOLD_CURSORS_OVER_COMMIT
> TYPE_FORWARD_ONLY
> CONCUR_READ_ONLY
> ???
>