Multiple choice asp ado

Database connectivity with ADO has 3 main objects:

  1. ADODB.Connection

  2. ADODB.Recordset

  3. ADODB.Command

  4. All of the above

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

ADO (ActiveX Data Objects) provides three main objects for database operations: Connection (opens the database connection), Recordset (represents and manipulates data records), and Command (executes commands and stored procedures). All three are part of the ADODB namespace and are commonly used together in ASP database applications.