Vinay  Arora
What is DataAdapter?
By Vinay Arora in ADO.NET on Jul 01 2013
  • Bharathi Raja
    Jan, 2018 28

    ADO.NET provides two central Data Access Components. The excellent thing is that, they are common across all Databases, be it SQL Server or other competitive databases. Its only the namespace to be used, that differs, while using a Database other than SQL Server.

    • 1
  • Srinivas Pabballa
    Aug, 2015 28

    DataAdapter is a class which is defined is System.Data Namespace which is directly communicates with the central databases it will fetch the data from the databases and fills that data into the datasets

    • 0
  • Lalit Raghav
    May, 2015 13

    DataAdpter is Bridge between database and dataset/Datatable .

    • 0
  • Munesh Sharma
    Apr, 2014 12

    http://vb.net-informations.com/ado.net-dataproviders/ado.net-dataadapter.htm

    • 0
  • Priti Kumari
    Jul, 2013 2

    SqlDataadapter is a interface between database and Ado.Net. dataadapter retrive data from database and fill in datatable using Fill method of dataadapter. For example: datatable _dt=new datatable(); sqlcommand cmd=new sqlcommand(); cmd.commandtype=commandtype.text; cmd.text="select * from tablename"; sqldataadapter ad=new sqldataadapter(cmd); ad.fill(_dt); gdvbind.datasource=_dt; gdvbind.databind();

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS