Heres my query:
Here are the tables, there is a tad bit more fields but they are irrelivant so I did not specify them:Code:SELECT *
FROM tblDownloads
INNER JOIN tblSection
ON tblDownloads.guidSectionID = tblSection.guidSectionID
WHERE (tblDownloads.guidCategoryID = 5)
ORDER BY 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.Code:tblDownloads = (guidDownloadID, guidSectionID, strTitle)
tblSections = (guidSectionID, strSection)
I really need to get guidSectionID, and all i have to say at this point is ***?Quote:
ADODB.Recordset error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
/Admin/showDownloads.asp, line 40
Any help would be appriciated,
Thanks a lot guys and gals
