[mapguide-commits] r6007 - trunk/MgDev/Server/src/Services/Feature

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Wed Jul 27 06:08:16 EDT 2011


Author: hubu
Date: 2011-07-27 03:08:16 -0700 (Wed, 27 Jul 2011)
New Revision: 6007

Modified:
   trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp
Log:
On behalf of Sam Wang
Add "save point" capability query into MapGuide feature service "GetProviderCapabilities" command.

Modified: trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp
===================================================================
--- trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp	2011-07-26 14:28:56 UTC (rev 6006)
+++ trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp	2011-07-27 10:08:16 UTC (rev 6007)
@@ -196,6 +196,9 @@
     bool supportsTransactions = ficc->SupportsTransactions();
     m_xmlCap->AddTextNode(connNode, "SupportsTransactions", supportsTransactions);
 
+    bool supportsSavePoint = ficc->SupportsSavePoint();
+    m_xmlCap->AddTextNode(connNode, "SupportsSavePoint", supportsSavePoint);
+
     bool supportsLongTransactions = ficc->SupportsLongTransactions();
     m_xmlCap->AddTextNode(connNode, "SupportsLongTransactions", supportsLongTransactions);
 



More information about the mapguide-commits mailing list