What are the three Ado objects?? --Connection,command, recordset

Showing Answers 1 - 3 of 3 Answers

The objects of ADO are
1.connection object-It is used for ADOs connection to a data store via OLE DB.
2.command object-It helps in sending SQL queries to the provider through the CommandText property, send a parameterised query or stored procedure through the use of a Parameter object or run a query and return the results to a data set object via the Execute method.
3.RecordSet object-The RecordSet object contains a Fields collection and a Properties collection.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions