Heres my query:

Code:
SELECT *
FROM tblDownloads
INNER JOIN tblSection
ON tblDownloads.guidSectionID = tblSection.guidSectionID
WHERE (tblDownloads.guidCategoryID = 5)
ORDER BY strSection
Here are the tables, there is a tad bit more fields but they are irrelivant so I did not specify them:
Code:
tblDownloads = (guidDownloadID, guidSectionID, strTitle)
tblSections = (guidSectionID, strSection)
Now, the thing is... this join works. How do I know that? Well, if i get strSection, a result pops up! However, when I try to get guidSectionID, it gives me an error.

ADODB.Recordset error '800a0cc1'

Item cannot be found in the collection corresponding to the requested name or ordinal.

/Admin/showDownloads.asp, line 40
I really need to get guidSectionID, and all i have to say at this point is ***?

Any help would be appriciated,

Thanks a lot guys and gals