Tag: Development

Community

Concurrent Model in ADO.NET

(Michael Milonov) The most popular instrument to access database data for .NET applications is ADO.NET. This set of components contains three main classes those are used to manipulate and store data: DataReader, DataSet, and DataAdapter. DataReader is able only to read data and can’t work as data so

Community

Serialization in Databases

(Bhuban Mohan Mishra) Serialization is the process of converting an object into a stream of bytes which is easily transferable over the network and storing its current state on any permanent storage media like file or database for later use. De-serialization is the reverse process of Serialization,

Community

State Management in ASP.NET 2.0

(Fritz Onion and Keith Brown) Where do you store per-client state in a Web application? This question is at the root of many heated debates over how to best design Web applications. The disconnected nature of HTTP means that there is no “natural” way to keep state on behalf of individual clients, bu