The information in this article applies to:
SUMMARYThere are two different methods for performing updates and inserts. One way is to create a recordset and then insert/update its records. The other way is to use the Execute method to issue a SQL statement which inserts/updates the records. MORE INFORMATION
The code below illustrates opening a recordset and then adding and altering
its records. The current location in the recordset determines which record
will be updated.
The code below illustrates inserting and updating records through the Execute method. The "Where" clause is used to specify which records will be updated. Notice that you do not work directly with a recordset.
Additional query words: kbnokeyword
Keywords : kbADO kbASP kbDatabase kbGrpASP kbCodeSnippet kbiis400 kbiis500 |
Last Reviewed: December 8, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |