T
Tamir Khason
I have a problem:
command returns X records based on some select. I want to build xmldocument
from xmlreader so I do this..., however instead of X records I recieve XML
with X-1 records... WHY????
here is the code:
reader = command.ExecuteXmlReader()
While reader.Read()
sTmpVal = sTmpVal & reader.ReadOuterXml
End While
command returns X records based on some select. I want to build xmldocument
from xmlreader so I do this..., however instead of X records I recieve XML
with X-1 records... WHY????
here is the code:
reader = command.ExecuteXmlReader()
While reader.Read()
sTmpVal = sTmpVal & reader.ReadOuterXml
End While