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
 
Back
Top