|
|
 |
| Classic ASP Professional For advanced coder questions in ASP 3. NOT for ASP.NET 1.0, 1.1, or 2.0. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Professional section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

September 15th, 2006, 11:29 AM
|
|
Friend of Wrox
|
|
Join Date: Oct 2004
Location: , , .
Posts: 178
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
Import data in CSV file
Hello,
This is Zeeshan Ahmed from itHighway. I have an application with my sql database containing about 30000 members records. There are 120 fields for in members table.
I have developed a script to download members data in CSV file but the problem is it only download only 800, 1000 or 1200 members records and after that the download is terminated.
I need to download all 30000 records in CSV file. Is there any solution to the issue I am having?
At the end of this post I have posted a few important lines from my download script.
Any idea..
Any help..
Will really be appriciated..
Thank you
Zeeshan Ahmed
itHighway
================================================== ======
================================================== ======
================================================== ======
Response.Expires = 0
server.ScriptTimeout = 1000
Response.Buffer = false
Response.ContentType = "text/csv"
Response.AddHeader "Content-Disposition", "attachment;filename=Members.csv"
set rAdmin = CONN.execute("SELECT * FROM MEMBERS")
txtA = "Phone Number,E-mail,Name,Street,"
response.Write(txtA)
txtA = "Info1,Info2,Info3,Info4,Info5,Info6,"
response.Write(txtA)
...................
............................
do while NOT rAdmin.EOF
txtB = ""& rAdmin("PHONE_NUMBER")
txtB = txtB + ","& rAdmin("EMAIL")
txtB = txtB + ","& rAdmin("NAME")
txtB = txtB + ","& rAdmin("STREET")
response.Write(txtB)
...................
............................
rAdmin.MoveNext
loop
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |