Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.59 KB

File metadata and controls

34 lines (27 loc) · 1.59 KB
title SQL Server data operations in ADO.NET
description Describes how to work with data in SQL Server. Contains sections about bulk copy operations, MARS, asynchronous operations, and table-valued parameters.
ms.date 08/15/2019
ms.assetid b864ebc9-ed8e-4059-85fd-36d9198f5521
ms.prod sql
ms.prod_service connectivity
ms.technology connectivity
ms.topic conceptual
author David-Engel
ms.author v-daenge
ms.reviewer v-kaywon

SQL Server data operations in ADO.NET

[!INCLUDEDriver_ADONET_Download]

This section describes SQL Server features and functionality that are specific to the Microsoft SqlClient Data Provider for SQL Server (xref:Microsoft.Data.SqlClient).

In this section

Bulk copy operations in SQL Server
Describes the bulk copy functionality for the .NET Data Provider for SQL Server.

Multiple Active Result Sets (MARS)
Describes how to have more than one xref:Microsoft.Data.SqlClient.SqlDataReader open on a connection when each instance of xref:Microsoft.Data.SqlClient.SqlDataReader is started from a separate command.

Asynchronous operations
Describes how to perform asynchronous database operations by using an API that is modeled after the asynchronous model used by the .NET Framework.

Table-valued parameters
Describes how to work with table-valued parameters, which were introduced in SQL Server 2008.

Next steps