> I'm tryin to read an XML file created by Oracle into SQL Server.
>
[quoted text clipped - 15 lines]
> Any ideas would be warmly welcomed,
> thanks.
Thank you very much, that works great. It's slower, but who cares.
Here's the VB version of the code for others, should they require it.
***
Dim objDSXML As New DataSet()
Dim enc As Encoding
Dim sr As StreamReader
enc = Encoding.GetEncoding("ISO-8859-1")
sr = New StreamReader(sFilename, enc, False)
objDSXML.ReadXml(sr)
***
thanks again.
> Try the following:
>
[quoted text clipped - 28 lines]
> > Any ideas would be warmly welcomed,
> > thanks.
Chris Lovett - 23 Oct 2003 05:50 GMT
It shouldn't be any slower. Did you measure a difference?
> Thank you very much, that works great. It's slower, but who cares.
> Here's the VB version of the code for others, should they require it.
[quoted text clipped - 43 lines]
> > > Any ideas would be warmly welcomed,
> > > thanks.