Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Jan 11th, 2006, 10:20 PM   #1
paulchwd
Hobbyist Programmer
 
paulchwd's Avatar
 
Join Date: Mar 2005
Posts: 139
Rep Power: 4 paulchwd is on a distinguished road
Exclamation accessing data in recordset

Herees the problem...


I have a recordset (recset) that holds the result of an sql query. The query returned 9 items

I only want to include the first five of those 9 in a table (and the rest of thme in another table later on ) so i did this

sql="select rate from mort"
set recset = adocon.execute(sql) 'note adocon is the connection string

 do while (not recset.eof)

   for i=0 to recset.fields.count-4

    response.write recset(i)

    next

recset.moveNext

loop

When i do this it loads a completely blank page.

can anyone help? :banana:
paulchwd is offline   Reply With Quote
Old Jan 22nd, 2006, 4:01 AM   #2
java_roshan
Professional Programmer
 
Join Date: Mar 2005
Location: Student of University of Mumbai, Maharashtra State, India
Posts: 344
Rep Power: 4 java_roshan is on a distinguished road
I am not sure this, but somewhere at the back of my mind, I remember one of our professor's mentioning about using recset.fields.count is not valid and would not work as it is expected to ...for specific "CONNECTION TYPES"....will try to confirm once I am able to recall that
__________________
Visit: http://www.somaiya.edu
java_roshan is offline   Reply With Quote
Old Feb 19th, 2006, 4:26 PM   #3
asp1
Newbie
 
Join Date: Feb 2006
Posts: 7
Rep Power: 0 asp1 is on a distinguished road
I would recommend modifying your query to achieve this.
eg. SELECT TOP 4 * FROM...
However if this isn't possible for any reason try
sql="select rate from mort"
set recset = adocon.execute(sql) 'note adocon is the connection string

 do while (not recset.eof)

   if n<5
   response.write recset(i)
   n=n+1
   end if
   next

recset.moveNext

loop
asp1 is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 5:23 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC