M
MN
Hi all,
I using MS Access 2000 open link table to MS SQL 2000
Server.
How can I delete the records from the link?
Here my code:
Set rs = db.OpenRecordset("select * FROM dbo_employee", _
dbOpenDynaset, adLockOptimistic)
With rs
.MoveFirst
Do While Not .EOF
rs.Delete
.MoveNext
Loop
.Close
End With
I got an error @ rs.delete "Can not update. Database read
only"
Any advise?
Thanks
I using MS Access 2000 open link table to MS SQL 2000
Server.
How can I delete the records from the link?
Here my code:
Set rs = db.OpenRecordset("select * FROM dbo_employee", _
dbOpenDynaset, adLockOptimistic)
With rs
.MoveFirst
Do While Not .EOF
rs.Delete
.MoveNext
Loop
.Close
End With
I got an error @ rs.delete "Can not update. Database read
only"
Any advise?
Thanks