Stored Procedures iBatis version 3 beta

2009-12-18 Thread JJ Stuart
I'm a newbie to iBatis and am currently trying to call a parameterised stored procedure using v3.5 beta of iBatis. The following mapping works with a hardcoded value http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd";> {call test_proc3 (102)}

Re: Stored Procedures iBatis version 3 beta

2009-12-21 Thread JJ Stuart
JJ Stuart wrote: > > All working now. > > Many thanks > -- View this message in context: http://old.nabble.com/Stored-Procedures-iBatis-version-3-beta-tp26843638p26871688.html Sent from the iBATIS - User - Java mailing list archiv

Calling MySql function using IBatis 3

2010-01-15 Thread JJ Stuart
Having issues calling below function and retrieving the result. Can some help (esp with XML set up ) CREATE FUNCTION test_function (param int) RETURNS int BEGIN RETURN param + 1; END; Thanks -- View this message in context: http://old.nabble.com/Calling-MySql-function-using