What is the purpose of the Connection Pooling feature in ADO.NET?

  • To automatically generate SQL queries
  • To improve performance by reusing connections from a pool
  • To manage database transactions
  • To prevent unauthorized access to the database
Connection pooling in ADO.NET is a technique used to enhance performance by reusing existing connections rather than creating a new one for each request. This reduces the overhead of establishing and tearing down connections, resulting in improved scalability and resource utilization.
Add your answer
Loading...

Leave a comment

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