Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting an inline schema from a dataset
Message
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Divers
Thread ID:
00837774
Message ID:
00837785
Vues:
26
>DataSet.GetXML() does a fine job of extracting the contents of a DataSet as an XML stream, but I'd like that extracted XML to include an inline schema. There doesn't seem to be an overload for GetXML() that allows you to do this, and it would seem that this should be do-able.
>
>FWIW, I'm looking for something that is the equivalent of the cSchemaName argument of "1" to VFP's CursorToXML() function.
>
>Thanks.

Well, it isn't pretty but you can do this.
DataSet ds = new DataSet();
// Fill up the DataSet here

string XML = "";

XML = ds.GetXmlSchema();
XML += ds.GetXml();
It isn't pretty, but it works. Or you could always override the GetXml in your class have it do that internal to your class.

Morgan
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform