Hello,
I need help. I have a Classic ASP application that connects to the Oracle 11 database using Oracle 11 ODBC driver through MS ADODB.
The application will freeze when I set a writable recordset object to nothing or another recordset.
IE
set rs = Server.CreateObject("ADODB.RecordSet")
rs.open sql, conn, adOpenDynamic, adLockPessimistic
'do stuff
rs.close
set rs = nothing 'Hangs on this statement, never continuing.
response.write "This line never gets served."
Or
set rs = Server.CreateObject("ADODB.RecordSet")
rs.open sql, conn, adOpenDynamic, adLockPessimistic
'do stuff
rs.close
set rs = conn.execute(sql2) 'Hangs here too.
response.write "This line never gets served."
What is the fix for this?
Thanks,
Andy Bay