---
title: "What happens if connection pooling is enabled?"  
description: "What happens if connection pooling is enabled?"  
author: "Anonymous User"  
published: 2011-02-07  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/354/what-happens-if-connection-pooling-is-enabled  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# What happens if connection pooling is enabled?

If connection pooling is enabled and when you call Close or Dispose methods, then the connection is returned to the connection pool. This connection can then be reused.If connection pooling is disabled and when you call Close or Dispose methods, the underlying connection to the server is actually closed.

## Answers

### Answer by Anonymous User

If connection pooling is enabled and when you call Close or Dispose methods, then the connection is returned to the connection pool. This connection can then be reused.If connection pooling is disabled and when you call Close or Dispose methods, the underlying connection to the server is actually closed.


---

Original Source: https://www.mindstick.com/interview/354/what-happens-if-connection-pooling-is-enabled

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
