how force ds.WriteXml to add column even for column with null?

  • Thread starter Thread starter mttc
  • Start date Start date
mttc,

Don't use ds.WriteXml but serialize it by hand node by node.

ds.WriteXml does this from the version 1.0 so it would break the code
changing that.

Cor
 
the DataTable.WriteXML do that also?

have on the net some made ready serilize DtatTable?
 
the DataTable.WriteXML do that also?

have on the net some made ready serilize DtatTable?

No you would need a kind of node writer, (there are endless variations of
that)

Cor
 
I find that if I write Schema also, and I ReadXMLSchema befoe I do
ReadXML, all column even null is there.

thenks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top