soozle
IS-IT--Management
- Jun 5, 2001
- 69
NT 4 server SP6a, Front Page Extensions (98) IIS 4
Access 97 database with SystemDSN setup
Using ASP I can add records to the database but can't Open the database for updating.
The following script:-
Set Con = Server.CreateObject( "ADODB.Connection"
Con.Open "VisitorBook"
Set rs = Server.CreateObject ("ADODB.Recordset" )
rs.ActiveConnection = Con
rs.CursorType = 3
this line >> rs.Open = "SELECT * FROM VisitorBook WHERE RecordNumber = " & recnum
gives the error
Object doesn't support this property or method: 'Open'
I've just built this web server from scratch after ours died.. have I missed something obvious ?
TIA
Soozle
Access 97 database with SystemDSN setup
Using ASP I can add records to the database but can't Open the database for updating.
The following script:-
Set Con = Server.CreateObject( "ADODB.Connection"
Con.Open "VisitorBook"
Set rs = Server.CreateObject ("ADODB.Recordset" )
rs.ActiveConnection = Con
rs.CursorType = 3
this line >> rs.Open = "SELECT * FROM VisitorBook WHERE RecordNumber = " & recnum
gives the error
Object doesn't support this property or method: 'Open'
I've just built this web server from scratch after ours died.. have I missed something obvious ?
TIA
Soozle