Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP HELP HELP WHAT DOES THIS MEAN

Status
Not open for further replies.

bryant89

Programmer
Nov 23, 2000
150
CA
/NetworkForms/_ScriptLibrary/Recordset.ASP, line 636

the error is on the line that reads this: this._rsADO.Open(); in the code to follow.

// double-check after ONBEFOREOPEN is fired
if (!this.isOpen())
{
@if (@debug)
try {
@end
this._rsADO.Open();
@if (@debug)
} catch (e) {
this._reportError(e,'open');
throw e;
}
@end
}
My pages were working fine and all of a sudden I am getting this stupid error. I know nothing about what is going in any of the _ScriptLibrary's. It is a stupid simple error that I have been dealing with all day and I can not figure it out.

Please any suggestions will help.
 
what are you trying to open in that, why not use something other than the one in script library , such as.

Set Conn = Server.CreateObject("ADODB.Connection")
Set Rs = Server.CreateObject("ADODB.Recordset")

Conn.Open "DSN=SomeDSN", "", ""

RS.Open "Select * from Table", Conn, CursorType, LockType

While not RS.Eof
Response.write RS("someField")
RS.MoveNext()
Wend

RS.Close()
Conn.Close()


Karl
kb244@kb244.com
Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top