Right, basically iBATIS won't replace your stored proc logic....C# will. So iBATIS will allow you to call the statements easier and get the results, but it won't replace the logic.
Clinton On Fri, 24 Dec 2004 05:48:07 -0700, Larry Meadors <[EMAIL PROTECTED]> wrote: > >>> [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 >