Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.08 KB

connection-pooling.md

File metadata and controls

27 lines (20 loc) · 1.08 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic
Connection pooling
Learn about connection pooling, an optimization technique that ADO.NET uses to minimize the cost of opening connections to data sources.
David-Engel
davidengel
11/13/2020
sql
connectivity
conceptual

Connection pooling

[!INCLUDEappliesto-netfx-netcore-netst-md]

[!INCLUDEDriver_ADONET_Download]

Connecting to a data source can be time consuming. To minimize the cost of opening connections, ADO.NET uses an optimization technique called connection pooling, which minimizes the cost of repeatedly opening and closing connections.

In this section

SQL Server Connection Pooling (ADO.NET)
Provides an overview of connection pooling and describes how connection pooling works in SQL Server.

See also