Changes between Version 10 and Version 11 of MapGuideRfc78
- Timestamp:
- 07/09/09 23:16:56 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc78
v10 v11 35 35 }}} 36 36 However, MapGuide Feature Service also provides another two APIs to execute sql statements as illustrated below, where a database transaction will internally be started and committed befor and after the sql statement execution. Here the capability of executing a sequence of sql statements within a single transaction is missing. 37 37 {{{ 38 38 virtual INT32 ExecuteSqlNonQuery( MgResourceIdentifier* resource, 39 39 CREFSTRING sqlNonSelectStatement ) = 0; 40 40 virtual MgSpatialContextReader* GetSpatialContexts( MgResourceIdentifier* resource, 41 41 bool bActiveOnly) = 0; 42 42 }}} 43 43 This proposal is to extend Feature Service to support executing a sequence of sql statements within a single transaction. 44 44