Re: ADOR.Recordset Object
>why would that give me an unsuporrted error? if it's not provided then why does the AddNew .. Update procedures exist?
AddNew is method of the ADO object model.
ADO simply communicates to the underlying OLEDB providers. If these do not support an ADO method you'll get the error mentioned.
To find out if a recordset supports Addnew, call the Supports function (or property).
Re: ADOR.Recordset Object
Thanks for the info.
The Supports( adAddNew ) function is returning FALSE, so I guess it's NOT supported.. :)