Hello, does any one know what to put in de jdbcType in this statement <parameter property="results" jdbcType="ORACLECURSOR" mode="OUT"/> insted of ORACLECURSOR if i´m using microsoft sql DB? thanks for your help
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Larry Meadors Sent: Viernes, 18 de Agosto de 2006 09:52 a.m. To: [email protected] Subject: Re: Nested Bean in Result Map This works: <resultMap id="PageBeanRM" class="PageBean"> <result property="id" column="ID" /> <result property="name" column="NAME" /> <result property="detail.address1" column="ADDRESS1" /> <result property="detail.address2" column="ADDRESS2" /> </resultMap> Larry On 8/18/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Hi, > > I have a bean as shown below. > > class PageBean{ > int id; > NestedBean detail; > String name; > } > > class NestedBean{ > String address1; > String address2; > } > > I have table with following columns. > ID, NAME, ADDRESS1, ADDRESS2 > > How to set the result map for the PageBean? > > Thanks & Regards, > Kiran > > > > The information contained in this electronic message and any attachments to > this message are intended for the exclusive use of the addressee(s) and may > contain proprietary, confidential or privileged information. If you are not > the intended recipient, you should not disseminate, distribute or copy this > e-mail. Please notify the sender immediately and destroy all copies of this > message and any attachments. > > WARNING: Computer viruses can be transmitted via email. The recipient should > check this email and any attachments for the presence of viruses. The company > accepts no liability for any damage caused by any virus transmitted by this > email. > > www.wipro.com >
