all groups > inetserver asp general > december 2006 >
You're in the

inetserver asp general

group:

Converting Recordset to CSV


Re: Converting Recordset to CSV Bob Barrows [MVP]
12/31/2006 7:03:10 AM
inetserver asp general:
[quoted text, click to view]
There is no single-step method of doing this. Basically, you create a string
containing the csv data and then use FileSystemObject to write it to a file.

The GetString method is very useful for generating the string. Its default
arguments will result in a csv string:

dim rs, s
s=rs.GetString

ASPFAQ has several examples of using the FileSystemObject.
http://www.aspfaq.com/show.asp?id=2039
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Re: Converting Recordset to CSV Jon Paal
12/31/2006 8:14:17 AM
http://www.veign.com/vrc_codeview.asp?type=web&id=40



[quoted text, click to view]

Converting Recordset to CSV Michael
12/31/2006 11:30:31 AM
After reviewing the internet I did not find strong and simple example that
transfer recordset to simple CSV file.

Thanks for any help

AddThis Social Bookmark Button