Click here to Skip to main content
15,884,388 members
Articles / Database Development / SQL Server
Article

Use XSLT to convert ADO Recordsets into delimited files

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
29 Oct 2001 62.5K   1.6K   23   1
Transform any XML persisted ADO Recordset into a delimited text file.

Introduction

The rs2txt.xsl is an Extensible Style Sheet that will convert any ADO RecordSet, persisted in XML format, to a delimited, string-qualified file. You will need ADO 2.1 or later in order to persist ADO RecordSets as XML. Please see the VB6 demo for an example of how to use this stylesheet.

Environment Used

  • MDAC 2.6
  • Microsoft XML, version 4
  • VB 6

Usage Notes

You can easily change the desired delimiter and string-qualifier by modifying the value of the delimiter and qualifier variables at the top-level of the stylesheet. If you wish to have no qualifier, just set the value of the qualifier variable to an empty xsl:text element.

The string-qualifier is currently only used on fields with a data type of string. All other types will not use a qualifier.

References

  • For more information about the ADO XML Persistence format, consult this web page.
  • For the latest MDAC, visit here.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generaluse of position() Pin
25-Oct-01 1:40
suss25-Oct-01 1:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.