Changes between Version 2 and Version 3 of MapGuideRfc43
- Timestamp:
- 12/05/07 16:15:13 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc43
v2 v3 27 27 == Motivation == 28 28 29 FDO maps some database types like an Oracle NUMBER to an Fdo decimal. The decimal type is a double precision number. MapGuide does not fully support interaction with double precision identity properties. This RFC adds the required API to support this.29 FDO maps some database types like an Oracle NUMBER to an Fdo decimal. The decimal type is a double precision number. !MapGuide does not fully support interaction with double precision identity properties. This RFC adds the required API to support this. 30 30 31 31 == Funding/Resources == … … 36 36 37 37 * Add the following API to MgSelectionBase 38 { 38 {{{ 39 39 // Add a single selection to the set where the identity property is a double. 40 40 void AddFeatureIdDouble(MgLayerBase* layer, CREFSTRING className, double identifier); 41 } 41 }}} 42 42 * Modify the Server and Web Extensions code bases to map the Fdo decimal type to an !MgDoubleProperty. 43 43