Changes between Version 5 and Version 6 of MapGuideRfc50
- Timestamp:
- 06/25/08 10:34:14 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc50
v5 v6 29 29 Example: 30 30 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 ))))) 32 32 33 33 34 34 == Proposed Solution == 35 35 36 The proposed solution is to add support for an additional syntax to the concat operator.36 The proposed solution is to add support for an additional syntax to the concat function. 37 37 38 38 Old syntax: 39 39 {{{ 40 concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat( NullValue ( OWNER_NAME , '' ) , concat('\nAddress: ', SITE_ADDR )))))40 concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(!NullValue ( OWNER_NAME , '' ) , concat('\nAddress: ', SITE_ADDR ))))) 41 41 42 42 }}}