Nope .Because it is throwing a null pointer excepption.
 

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:54 PM
To: [email protected]
Subject: Re: Urgent help required
Importance: High

ouch the first line should read...

int rows = ((Integer)sqlMap.insert("insertProduct", product)).intValue();


On Mar 10, 2006, at 10:51 AM, Nathan Maves wrote:

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

 


Reply via email to