Multiple choice technology testing

what are the two most commonly used ADO objects?

  1. A. Fields

  2. B. Execute

  3. C. Connection, RecordSet

  4. D. Open, ConnectionString

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Connection object establishes the link to the data source, while the RecordSet object holds the data returned from a query. These are the two fundamental ADO objects used in almost all database operations. Fields is a property collection within RecordSet, Execute is a method, and Open/ConnectionString are related to connection establishment but are not objects themselves.