hi,all.
i have some other questions.
i need to get the sql witch had executed to develop a log manager system.for
ibatis,is there anyway to get it?
3ks!
hi,all.
i have some other questions.
i need to get the sql witch had executed to develop a log manager system.for
ibatis,is there anyway to get it?
3ks!
Is it possible to map the numRows(Output parameter) to an entirely different
Java object than BuildControlObject?
--
View this message in context:
http://www.nabble.com/Spring---Ibatis-Stored-Procedure-Call-tp21251633p21276670.html
Sent from the iBATIS - User - Java mailing list archive at Nabbl
And of course add a suitable numRows property to your Java custom class
BuildControlObject.
ibatis will only need property getters for the inputs and only a setter for
your one output member. You can make all the members public for convenience
of your Java code to access.
(I often make these cust
For a single custom Java class you can have a single ibatis parameterMap
that maps both inputs (mode="IN") and outputs (mode="OUT") to the stored
procedure call - or even have class members that are both (mode="INOUT").
Place your output as the last item in your
(I'm assuming your last positiona