locked
Connection Pooling RRS feed

  • Question

  • User1904516115 posted

    Connection Pooling is a feature of SQL Server or ADO.NET?

    Tuesday, January 1, 2019 6:30 PM

All replies

  • User1120430333 posted

    Connection Pooling is a feature of SQL Server or ADO.NET?

    It's part of ADO.NET, which involves pooling a connection when the user credentials are the same for a given connection with all connections using the same credentials are pooled to use one connection. It doesn't matter if the database is MS SQL Server, Oracle, Sybase, etc. and etc.

    Tuesday, January 1, 2019 6:53 PM
  • User-271186128 posted

    Hi vinodkpasi,

    Connection Pooling is a feature of SQL Server or ADO.NET?

    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. Connection pooling is handled differently for the .NET Framework data providers.

    More details, please check the Connection Pooling.

    SQL Server Connection Pooling (ADO.NET)

    OLE DB, ODBC, and Oracle Connection Pooling

    Best regards,
    Dillion

    Wednesday, January 2, 2019 2:02 AM