DataAdapter: DataAdapter is Nothing but It is Bridge B/w the dataset and Database.
Befor going to dataadapter we need to follwing ;
1)Establish the Connection to database
2)Open Connection by Using Open method.
3)Fill the Dataadapetr.
Dataadpter load Genereated datd from Dataset Bu Using Fill() Method.
Ex:
Dataset ds = new Dataset();
datataadpter da = new Dataadapter("Select Query",Con);
da.Fill("Tablename",ds);
da.Fill(ds);//like
Loading

