Parameter Values and Domains |
Input and output parameters can be based on a domain. The main three reasons to base a parameter on a domain, are:
Examples of simple parameter values are: BRAZIL, and: 65. An example of a complex parameter value is: <MyXMLParameter> <TOUR>BRAZIL</TOUR> <AGE>65</AGE> </MyXMLParameter>
This means that for a domain based on a DATE data type, and with IO Format set to: YYYY-MM-DD, both the data type and IO Format are applied in the following SQL Statement of a method: SELECT start_date FROM schedtour WHERE schedtour_id = :MySchedtourID AND start_date > :MyStartDate
|