Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

put XML document into a recordset in VB6.0

Status
Not open for further replies.

BlackBox

Programmer
Feb 21, 2001
10
0
0
BE
I know that you can convert a recordset into a XML document in VB6.0 by doing the following;

Dim oStream As ADODB.Stream
Set oStream = New ADODB.Stream
rs.Save oStream, adPersistXML

but does anyone know how I can do the opposite. Namely how do you put the content of a XML document into a recordset in VB6.0? Is this even possible. Could anyone give me a code example?

thanks in advance....

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top