Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Cursor to XML using XMLAdapter
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
XML, XSD
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01087940
Message ID:
01091344
Vues:
64
David,

Thanks for your field renaming suggestion, it works a treat. For the archives here is the routine I used for this:
FUNCTION SetNameTitleCase(loAdapter, loTable, lcField)
	lcUniField=STRCONV(lcField,5)
	lcUniLowField=LOWER(lcUniField)
	loField=loTable.Fields(lcUniLowField)
	loTable.Fields.remove(lcUniLowField)
	loField.XMLName=lcUniField
	loTable.Fields.Add(loField,loField.XMLName)
ENDFUNC
Rgds,
Nick
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform