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)}
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
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