zzfive03
Programmer
- Jun 11, 2001
- 267
Ok this is very frustrating..
I have my ASP page connecting to the MS Access DB, and I can do my select statments, but it wont let me update, delete or insert. Are there securitys on the Access database or something I am not doing rigth in my RS object? Here is the way I am doing it:
'DB Connect
Set DB = Server.CreateObject("adodb.connection"
DSNString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & server.mappath("database/myDatabase.mdb"
DB.Open DSNString
SQL = "..whatever..."
Set RS = Server.CreateObject("adodb.recordset"
RS.Open SQL, DB
Any help would be great.
I have my ASP page connecting to the MS Access DB, and I can do my select statments, but it wont let me update, delete or insert. Are there securitys on the Access database or something I am not doing rigth in my RS object? Here is the way I am doing it:
'DB Connect
Set DB = Server.CreateObject("adodb.connection"

DSNString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & server.mappath("database/myDatabase.mdb"

DB.Open DSNString
SQL = "..whatever..."
Set RS = Server.CreateObject("adodb.recordset"

RS.Open SQL, DB
Any help would be great.