In ADO.NET, what is the purpose of the Connection Pooling feature?

  • To automatically update database schemas
  • To improve security by encrypting database connections
  • To manage the connections between a .NET application and a database
  • To optimize network bandwidth usage
Connection Pooling in ADO.NET is used to efficiently manage database connections between a .NET application and a database server. It helps in reusing existing connections, thus reducing the overhead of opening and closing connections frequently. This improves application performance and scalability by minimizing the time spent on establishing new connections.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *