Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
What is an XML UpdateGram?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
XML, XSD
Divers
Thread ID:
00982743
Message ID:
00982765
Vues:
22
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform