>>> [EMAIL PROTECTED] 12/23/04 8:03 PM >>> > Suppose I have a stored procedure with this code > inside that I want to take out of the stored procedure > and convert into a SQL Map.
I'll ask the obvious: Why? One of the cool things about iBATIS is that it doesn't require you to change the way you write code, it just makes it easier. So, if you have a working stored procedure, why change it? Just call the procedure from iBATIS. :-) If you do this as a stored procedure, it will be faster and cleaner. It also seems like a more performant and stable way to go. Larry