Proper way to map ref cursor in stored proc

2005-06-08 Thread Mike Fagan
Hi, I saw that IBATIS-53 was closed as fixed today so I am trying to upgrade my mappings to use version 2.1.0 of sql maps. Does anyone know what is the type to use for the ref cursor? I was using ORACLECURSOR as in the following mapping. mode="IN" />

Re: Ref Cursor

2005-01-08 Thread Kris Schneider
Larry, I previously added my setup to the "3rd Party Contributions" Wiki page: http://wiki.apache.org/ibatis/3rd_20Party_20Contributions I'm doing things slightly differently now so I'll update my entry when I get the chance. I've got a vested interest in having this work so I'd be happy to help

Re: Ref Cursor

2005-01-08 Thread Larry Meadors
Yes, this is possible. At this point, the components to do it are still a bit fluid. I have a need to do this, too, so am trying to document how it all works. If you are interested in helping, there are a couple of threads that may be of interest to you: http://www.mail-archive.com/ibatis-user-

Ref Cursor

2005-01-07 Thread Hernan BOYKIER
I'm trying to migrate from a legacy framework to iBatis. The problem that I have is that all my business logic is written in Oracle Stored Procedures. They return a lot of parameters as Ref Cursors and with User Types. Is it possible to handle this procedures with iBatis SQL Maps?     Thanks