Re: Spring - Ibatis Stored Procedure Call

2009-01-05 Thread joson yu
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!

Re: Spring - Ibatis Stored Procedure Call

2009-01-04 Thread joson yu
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!

Re: Spring - Ibatis Stored Procedure Call

2009-01-04 Thread Sudhakar Kanagarajan
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

Re: Spring - Ibatis Stored Procedure Call

2009-01-02 Thread Roger Voss
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

Re: Spring - Ibatis Stored Procedure Call

2009-01-02 Thread Roger Voss
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