stream as source for dataset

ganders

Freshman
Joined
Nov 25, 2004
Messages
32
hi

the following code creates a memorystream from a string. this stream is then supposed to be used as source for a dataset.

but this doesn't work. any ideas?

best regards



Dim s As String = ""
Dim pStream As New System.IO.MemoryStream
Dim pEncoding As New System.Text.UnicodeEncoding
Dim pBuffer As Byte()

s = "<?xml version='1.0' encoding='ISO-8859-1' standalone='yes'?>"
s = s & "<RESULTS>"
s = s & "<TABLE "
s = s & "ID='1'"
s = s & "ADDRESS='SRARR' />"
s = s & "</RESULTS>"
pBuffer = pEncoding.GetBytes(s)
pStream.Write(pBuffer, 0, pBuffer.Length)

pDS.ReadXml(pStream)
 
Back
Top