Re: Calling a single-param SP

2007-01-26 Thread Nathan Maves
looks correct to me. give it a go On 1/26/07, Brandon Goodin <[EMAIL PROTECTED]> wrote: did you try it? On 1/25/07, Dave Rodenbaugh <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > New question > > If I have a stored proc that takes a single parameter...is this the > right way to call it

Re: Calling a single-param SP

2007-01-26 Thread Brandon Goodin
did you try it? On 1/25/07, Dave Rodenbaugh <[EMAIL PROTECTED]> wrote: Hi everyone, New question If I have a stored proc that takes a single parameter...is this the right way to call it in the SQL Map XML? {call OWNER.APP.SP_NAME(?)} or should I be using a parameterClass='ja

Calling a single-param SP

2007-01-25 Thread Dave Rodenbaugh
Hi everyone, New question If I have a stored proc that takes a single parameter...is this the right way to call it in the SQL Map XML? {call OWNER.APP.SP_NAME(?)} or should I be using a parameterClass='java.lang.String' instead of the parameterMap in the procedure tag? Confuse