Database connectivity with ADO has 3 main objects:
-
ADODB.Connection
-
ADODB.Recordset
-
ADODB.Command
-
All of the above
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.