Hello, I'm getting the error 8007000e, "Not enough storage is available to complete this operation." It's running Windows 2000 and has at least 2gig free and the task manager doesn't show that anything is hogging memory.
The code that it happens on is
in:
The problem started when I opened the dsn I'm using to make a connection and saved it, but I don't think I made any changes to it. I went back and looked at it again, and it looks the way it should.
Please help!
Earme
The code that it happens on is
Code:
alldata=rstemp.getrows()
Code:
set rstemp=Server.CreateObject("ADODB.Recordset")
aduseclient=3
rstemp.cursorlocation=aduseclient
rstemp.cachesize=pagesize
rstemp.PageSize=pagesize
rstemp.open parmSQL,parmconn
pagemax=cint(rstemp.pagecount)
recordnum=cint(rstemp.RecordCount)
parmdict.add "pagemax", pagemax
if not(rstemp.eof) then
alldata=rstemp.getrows()
end if
rstemp.close
set rstemp=nothing
conntemp.close
set conntemp=nothing
Please help!
Earme