RobertT687
Programmer
I'm in the process of teaching myself to use ADO rather than DAO when developing new Access2K databases. I'm comfortable with using connections, recordsets etc. What I can't seem to find is an example of ADO code that replaces the simple DAO command CurrentDB.Execute(sql action code here).
The DAO command avoids the necessity of creating a recordset to do a simple UPDATE or DELETE (i.e. CurrentDb.Execute("DELETE * FROM [mytable]"
where '[mytable]' is a local table to the database or a linked ODBC table.
I like the simplicity of the DAO command and want to know if there is as simple a method available to ADO.
PS for the sake of argument, assume the DAO libraries are not used.
Thanks in advance.
The DAO command avoids the necessity of creating a recordset to do a simple UPDATE or DELETE (i.e. CurrentDb.Execute("DELETE * FROM [mytable]"
I like the simplicity of the DAO command and want to know if there is as simple a method available to ADO.
PS for the sake of argument, assume the DAO libraries are not used.
Thanks in advance.