tag

home / developersection / tag

ADO.NET using XML Data
ado.net 13-Feb-2025
ADO.NET using XML Data

ADO.NET allows you to work with XML data in multiple ways, including storing, retrieving, and manipulating XML within databases or datasets.

ACID Properties in Database Transactions
ado.net 12-Feb-2025
ACID Properties in Database Transactions

ACID stands for Atomicity, Consistency, Isolation, and Durability—four key properties that ensure reliable processing of database transactions.

Connected vs Disconnected Architecture in ADO.NET
ado.net 12-Feb-2025
Connected vs Disconnected Architecture in ADO.NET

In ADO.NET, there are two types of architectures for accessing and managing data:

What is DataTable?
ado.net 12-Feb-2025
What is DataTable?

The DataTable class in ADO.NET represents a single in-memory table that holds rows and columns of data.

What is SqlDataReader?
ado.net 12-Feb-2025
What is SqlDataReader?

The SqlDataReader class in ADO.NET is used to fetch and read data from a SQL Server database efficiently and forward-only.

ADO.NET Basics
ado.net 12-Feb-2025
ADO.NET Basics

ADO.NET (ActiveX Data Objects for .NET) is a data access technology in the .NET framework that allows applications to interact with databases.

What is the need for ADO.NET?
ado.net 07-Jul-2021
What is the need for ADO.NET?

What is need for ADO.NET while using .NET Framework? And what are their basic components?

Connection Pooling in ADO.Net
ado.net 16-Nov-2011
Connection Pooling in ADO.Net

Creating a database connection is somewhat time-consuming because it involves the overhead of network-level handshaking and security credentialing for each new connection request.

DataPager Control in ASP.Net
ado.net 08-Nov-2010
DataPager Control in ASP.Net

DataPager control can be associated with the data-bound control by using the PagedControlID property. Alternatively, by putting the DataPager control

ListView Control in ASP.Net
ado.net 08-Nov-2010
ListView Control in ASP.Net

The ASP.NET ListView control enables you to bind to data items that are returned from a data source and display them. You can display data in pages. You can display items individually, or you can group them.

DataList Control in ASP.Net
ado.net 30-Oct-2010
DataList Control in ASP.Net

The DataList control is used to display a repeated list of items that are bound to the control. However, the DataList control adds a table around the data items by default.

GridView Control: A brief Concept
ado.net 20-Sep-2010
GridView Control: A brief Concept

The GridView control is used to display the values of a data source in a table. Each column represents a field, while each row represents a record. Th