Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What is an XML UpdateGram?
Message
General information
Forum:
Visual FoxPro
Category:
XML, XSD
Miscellaneous
Thread ID:
00982743
Message ID:
00982765
Views:
21
I was playing around with XMLUPDATEGRAM():
SELECT cust_id, price, isnew;
	FROM Customers;
	INTO CURSOR New_Customers READWRITE 
      
CURSORSETPROP("Buffering", 5, "Customers")
   
REPLACE Price WITH (Price * 1.083)
   
cXMLUpdg = XMLUPDATEGRAM("Customers")
? cXMLUpdg
which produced:
<?xml version = "1.0" encoding="Windows-1252" standalone="yes"?>
<root xmlns:updg="urn:schemas-microsoft-com:xml-updategram">
	<updg:sync/>
</root>
I don't see any data changes.





>>What is an XML UpdateGram?
>
>It's a neat function (VFP7+) that creates an XML short file on a buffered table indicating what the buffered record contained before and what's after. Makes it easy to post changes (inserts/updates/deletes).
>
>See:
>XMLUPDATEGRAM() (VFP Help)
>http://fox.wikis.com/wc.dll?Wiki~XMLUpdateGram
>http://fox.wikis.com/wc.dll?Wiki~XMLUpdateGramParse
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform