Hi there,
I am manipulating some db rows I get back. I find the problem hard to track down since this same code is working perfectly on another machine (using postgres7.4). I am using postgres8.1 and for some reason its giving me this error.
I was wondering if I can get pointers as to which part of the code may be wrong.
and I am getting
Microsoft VBScript runtime error '800a000d'
Type mismatch
I am manipulating some db rows I get back. I find the problem hard to track down since this same code is working perfectly on another machine (using postgres7.4). I am using postgres8.1 and for some reason its giving me this error.
I was wondering if I can get pointers as to which part of the code may be wrong.
Code:
allForumData = rsForum.GetRows(adGetRowsRest)
for iForumCheck = 0 to recForumCount
if CatID = allForumData(fCAT_ID, iForumCheck) then bContainsForum = True <- this is the line where I get the type mismatch
next
and I am getting
Microsoft VBScript runtime error '800a000d'
Type mismatch