Changes between Version 9 and Version 10 of MapGuideRfc78


Ignore:
Timestamp:
Jul 9, 2009, 11:16:30 PM (15 years ago)
Author:
klain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc78

    v9 v10  
    2929
    3030Currently MapGuide Feature Service supports executing a sequence of standard commands within a single transaction through the API illustrated below. The standard commands are delete/update/insert. If you pass in true for useTransaction, the API will start a transaction and commit(or rollback) it at the end. Thus all command execution will reside inside a single transaction.
    31 
     31{{{
    3232    virtual MgPropertyCollection* UpdateFeatures( MgResourceIdentifier* resource,
    3333                                                  MgFeatureCommandCollection* commands,
    3434                                                  bool useTransaction ) = 0;
    35 
     35}}}
    3636However, 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.
    3737