Changes between Version 3 and Version 4 of MapGuideRfc50
- Timestamp:
- 06/25/08 10:33:14 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc50
v3 v4 26 26 == Motivation == 27 27 28 The existing concat text function is difficult to work with when multiple concatenations need to be done. 29 Example: 30 31 concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(NullValue ( OWNER_NAME , '' ) , concat('\nAddress: ', SITE_ADDR ))))) 32 28 33 29 34 == Proposed Solution == 30 35 36 The proposed solution is to add support for an additional syntax to the concat operator. 37 38 Old syntax: 39 {{{ 40 concat('Parcel ID: ', concat( PID , concat('\nOwner Name: ', concat(NullValue ( OWNER_NAME , '' ) , concat('\nAddress: ', SITE_ADDR ))))) 41 }}} 42 43 New syntax: 44 {{{ 45 concat('Parcel ID: ', PID , '\nOwner Name: ', NullValue ( OWNER_NAME , '' ) , '\nAddress: ', SITE_ADDR ) 46 }}} 31 47 32 48 == Implications ==