I think you only get a value back if you use selectKey.
Larry
On 3/10/06, Krishnamoorthi, Sruthi (Raytheon)
<[EMAIL PROTECTED]> wrote:
>
> This is throwing an exception because
>
>
> Integer test = (Integer)sqlMap.insert(qryId,usr);
>
> System.out.println("Return value from Insert"+test); id displaying Null
> value:
> But a record is getting inserted in Database. //For sure
> How to confirm that my record got inserted.
>
>
> Thanks,
> Sruthi Krishnamoorthi
> 703-562-9732(Work)
> 537 A - (Raytheon) Location
>
> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 10, 2006 12:52 PM
> To: [email protected]
> Subject: Re: Urgent help required
> Importance: High
>
> Just use
>
>
> Integer rows = ((Integer)sqlMap.insert("insertProduct",
> product)).intValue();
>
>
> if you are using Java 1.5
>
>
> int rows = (Integer)sqlMap.insert("insertProduct",
> product);
>
>
> Nathan
>
>
>
>
>
> On Mar 10, 2006, at 10:41 AM, Krishnamoorthi, Sruthi (Raytheon) wrote:
>
>
>
>
> The docs says
>
> int rows = sqlMap.insert ("insertProduct", product);
>
> returns a int value
>
>
>
> When I code it ,the return value is object. I am not able to get the int
> return value. Please help me out.
>
>
> Thanks,
> Sruthi Krishnamoorthi
> 703-562-9732(Work)
> 537 A - (Raytheon) Location
>
>
>