Help with creating recordset from XML

  • Thread starter Thread starter intrader
  • Start date Start date
I

intrader

I need help with the code to create a recordset from a string containing
XML. The XML represents one or more history records. The history records
have the representation:
<Filters>
<filter>
<actionType></actionType>
<lpidlist></lpidlist>
<filterDetail>
<firstFilter></firstFilter>
<secondFilter></secondFilter>
....etc.
<filterDetail>
<filter>
....etc.
</Filters>

I really appreciate your help with this.

Thanks
 
If your reference to a recordset means an ADO recordset, the following KB
article may be useful.

http://support.microsoft.com/default.aspx?scid=kb;en-us;263247

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


I need help with the code to create a recordset from a string containing
XML. The XML represents one or more history records. The history records
have the representation:
<Filters>
<filter>
<actionType></actionType>
<lpidlist></lpidlist>
<filterDetail>
<firstFilter></firstFilter>
<secondFilter></secondFilter>
....etc.
<filterDetail>
<filter>
....etc.
</Filters>

I really appreciate your help with this.

Thanks
 
Back
Top