Enlist all the components of an ADO.net framework?

devquora
devquora

Posted On: Oct 16, 2020

 

The components of an ADO.net framework include:

  • Connection object: It is a representation of the connection to the databases
  • DataReader: It performs only forward and read-only activities on the record set
  • DataAdapter: It acts as a bridge between the database and dataset
  • Command object: It is used to execute and store procedures and commands that are required on a database
  • ExecuteNonQuery: This component is used to execute commands but it does not return any value
  • ExecuteScalar: Performs execution and returns of single value
  • ExecuteReader: Performs execution and returns result sets

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    ADO.Net Interview Questions

    Describe ADO.net?

    ADO.net is an acronym for ActiveX Data Objects, which is commonly used as a part of the .net framework...

    ADO.Net Interview Questions

    List some of the common data providers for ADO.net framework.

    Some of the common data providers for ADO.net framework include:..