Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.52 KB

sql-server-data-operations.md

File metadata and controls

32 lines (25 loc) · 1.52 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic
SQL Server data operations in ADO.NET
Describes how to work with data in SQL Server. Contains sections about bulk copy operations, MARS, asynchronous operations, and table-valued parameters.
David-Engel
davidengel
v-kaywon
08/15/2019
sql
connectivity
conceptual

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