Scenario: You want to improve the performance of your ADO.NET application. What feature of ADO.NET can you leverage to reduce the overhead of opening and closing database connections?

  • Command Timeout
  • Connection Pooling
  • Data Binding
  • DataReader
Connection Pooling in ADO.NET helps in managing and reusing database connections, reducing the overhead of opening and closing connections frequently. It maintains a pool of connections that can be reused, thus improving application performance.
Add your answer
Loading...

Leave a comment

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