Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.06 KB

File metadata and controls

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

Connection pooling

[!INCLUDE dotnet-all]

[!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