Re: Weird IN OUT Param problem.

2008-01-31 Thread Nathan Maves
ur help Jeff. I truly appreciate your fast response too.. > > > Sundar > > -- > *From:* Jeff Butler [mailto:[EMAIL PROTECTED] > *Sent:* Wednesday, January 30, 2008 2:55 PM > > *To:* user-java@ibatis.apache.org > *Subject:* Re: Weird IN OUT

RE: Weird IN OUT Param problem.

2008-01-30 Thread Sundar Sankaranarayanan
@ibatis.apache.org Subject: Re: Weird IN OUT Param problem. NUMBER is not a valid jdbcType - that's at least one problem. Obviously, this is not so critical on the IN parameters, but it causes problems for the OUT/INOUT parameters. A java.lang.Long would typically correspond to jdbcType BIGINT.

Re: Weird IN OUT Param problem.

2008-01-30 Thread Jeff Butler
t;> > > {call example(?,?,?,?,?,?,?,?,?,?,?)} > > > > > > > The last 2 params are float in the Database. I am not sure if this has > something to do with the procedure returning multiple out params. > > -- > *From:* Jeff Butler [mailto

RE: Weird IN OUT Param problem.

2008-01-30 Thread Sundar Sankaranarayanan
. From: Jeff Butler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 30, 2008 2:39 PM To: user-java@ibatis.apache.org Subject: Re: Weird IN OUT Param problem. Make sure you are specifying the jdbcType of the out/inout parameters in your parameter map. Jeff Butler

Re: Weird IN OUT Param problem.

2008-01-30 Thread Jeff Butler
Make sure you are specifying the jdbcType of the out/inout parameters in your parameter map. Jeff Butler On Jan 30, 2008 3:37 PM, Sundar Sankaranarayanan < [EMAIL PROTECTED]> wrote: > Hi All, > I have a stored procedure, which is something like this. > > call example(?,?,?,?,?,?) > > The first