Changes between Version 5 and Version 6 of MapGuideRfc50


Ignore:
Timestamp:
Jun 25, 2008, 10:34:14 AM (16 years ago)
Author:
brucedechant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc50

    v5 v6  
    2929Example:
    3030
    31  concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(NullValue (  OWNER_NAME , '' ) , concat('\nAddress: ',  SITE_ADDR )))))
     31 concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(!NullValue (  OWNER_NAME , '' ) , concat('\nAddress: ',  SITE_ADDR )))))
    3232
    3333
    3434== Proposed Solution ==
    3535
    36 The proposed solution is to add support for an additional syntax to the concat operator.
     36The proposed solution is to add support for an additional syntax to the concat function.
    3737
    3838Old syntax:
    3939{{{
    40 concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(NullValue (  OWNER_NAME , '' ) , concat('\nAddress: ',  SITE_ADDR )))))
     40concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(!NullValue (  OWNER_NAME , '' ) , concat('\nAddress: ',  SITE_ADDR )))))
    4141
    4242}}}