I'm new to DB programming, and I just started using ADO.
I know how to open connection, recordsets, read fields, etc...
But how do I write to a specified field?
I'm opening my recordset like so:
Code:
RS.Open "[Update Check]", DB, adOpenForwardOnly
And I'm trying to write to the field like so:
Code:
RS.MoveFirst
RS.Move intCurRecord
RS.Fields("Checked").Value = CStr(Now)
And when I run the app it gives me the following error:
Run-time error '3251':

Object or provider is not capable of performing requested operation.


I'm using an Access DB, ADO 2.5, and MS Jet.

Can anyone help me with this?



[Edited by Sc0rp on 09-15-2000 at 04:52 PM]