Hello there!
I am using ASP script imbedded in an html page to access data from an Oracle database.
As of right now the pages don't seem to load up, and instead I get a pop-up window telling me: "Out of virtual memory" and then one that says "the memory could not be 'read'. click ok to terminate the program". This leads me to believe that there is perhaps a loop in my coding or something (I am new to this).
My connection coding reads as follows:
<%
On Error Resume Next
Set oConn = Server.CreateObject("ADODB.Connection"
oConn.Open "DRIVER={Microsoft ODBC for Oracle}; SERVER=aserver; UID=auser; PWD=apass"
Set oRS=oConn.Execute("sql statement"
%>
My sql statement is correct as I have already tested it. Is there something wrong with my connection coding? I can provide the full content of the page if you think it might help (didn't want to post it all here).
Cheers very much!
- Iain
I am using ASP script imbedded in an html page to access data from an Oracle database.
As of right now the pages don't seem to load up, and instead I get a pop-up window telling me: "Out of virtual memory" and then one that says "the memory could not be 'read'. click ok to terminate the program". This leads me to believe that there is perhaps a loop in my coding or something (I am new to this).
My connection coding reads as follows:
<%
On Error Resume Next
Set oConn = Server.CreateObject("ADODB.Connection"
oConn.Open "DRIVER={Microsoft ODBC for Oracle}; SERVER=aserver; UID=auser; PWD=apass"
Set oRS=oConn.Execute("sql statement"
%>
My sql statement is correct as I have already tested it. Is there something wrong with my connection coding? I can provide the full content of the page if you think it might help (didn't want to post it all here).
Cheers very much!
- Iain