You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user-cs@ibatis.apache.org by Samnang Chhun <sa...@gmail.com> on 2007/08/20 08:43:58 UTC

How to use global class's member

Hi,           

 

I have a global class that have static members like UserLogonID. I want to
use UserLogonID when I insert a new customer into database. How can I use
this?

 

Global class:

 

public static class Global

{

                public static string UserLogonID = "Admin";

}

 

Customer SqlMap:

 

<insert id="InsertNewCustomer" parameterClass="IMS.Customer">

      INSERT INTO customers

      (first_name, last_name, sex, user_logon_id)

      VALUES

      (#FirstName#, #Last_Name#, #Sex#, #Global.UserLogonID#) <!-- How can I
use this? -->

</insert>

 

I hope to hear from you soon.

 

Cheers,

Samnang


RE: How to use global class's member

Posted by "Clough, Samuel (USPC.PRG.Atlanta)" <Sa...@princetonrg.com>.
You might could pass the value along with the Customer class in a
dictionary and then reference them that way in your mapping.

 

From: Samnang Chhun [mailto:samnang.chhun@gmail.com] 
Sent: Monday, August 20, 2007 2:44 AM
To: user-cs@ibatis.apache.org
Subject: How to use global class's member

 

Hi,           

 

I have a global class that have static members like UserLogonID. I want
to use UserLogonID when I insert a new customer into database. How can I
use this?

 

Global class:

 

public static class Global

{

                public static string UserLogonID = "Admin";

}

 

Customer SqlMap:

 

<insert id="InsertNewCustomer" parameterClass="IMS.Customer">

      INSERT INTO customers

      (first_name, last_name, sex, user_logon_id)

      VALUES

      (#FirstName#, #Last_Name#, #Sex#, #Global.UserLogonID#) <!-- How
can I use this? -->

</insert>

 

I hope to hear from you soon.

 

Cheers,

Samnang 
--------------------------------------------------------

Princeton Retirement Group, Inc - Important Terms 
This E-mail is not intended for distribution to, or use by, any person or entity in any location where such distribution or use would be contrary to law or regulation, or which would subject Princeton Retirement Group, Inc. or any affiliate to any registration requirement within such location. 
This E-mail may contain privileged or confidential information or may otherwise be protected by work product immunity or other legal rules. No confidentiality or privilege is waived or lost by any mistransmission. Access, copying or re-use of information by non-intended or non-authorized recipients is prohibited. If you are not an intended recipient of this E-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute any portion of this E-mail. 
The transmission and content of this E-mail cannot be guaranteed to be secure or error-free. Therefore, we cannot represent that the information in this E-mail is complete, accurate, uncorrupted, timely or free of viruses, and Princeton Retirement Group, Inc. cannot accept any liability for E-mails that have been altered in the course of delivery. Princeton Retirement Group, Inc. reserves the right to monitor, review and retain all electronic communications, including E-mail, traveling through its networks and systems (subject to and in accordance with local laws). If any of your details are incorrect or if you no longer wish to receive mailings such as this by E-mail please contact the sender by reply E-mail. 

--------------------------------------------------------