DataReader
DataReader is used to read the data from database and it is a read and forward only connection oriented architecture during fetch the data from database. DataReader will fetch the data very fast when compared with dataset. Generally we will use ExecuteReader object to bind data to datareader.
To...
Tuesday, November 4, 2014
Important Command Ado.Net
With the release of the .NET Framework, Microsoft introduced a new data access model, called ADO.NET.The five major objects in ADO.NET are:
Obects Description
Connection The Connection object is responsible for establishing and maintaining the connection to the data source.
Command The Command object...