You are responsible for closing any connections you open. Regardless of whether you use pooling or not, the pattern is Create a connection, open, use it for one or more SqlCommands and close it.
With respect to pooling, a connection with pooling enabled will not be re-used before it is closed, at which point the connection is reset prior to re-use. In either method, you still need to be closing your connections.
With respect to multiple threads affecting use of connection pool, I don't see how that is relevant. A SqlConnection is not thread-safe, so you should be assigning ownership of a given connection to a single thread or ensuring that only one thread accesses it at a time. Either way, so long as you close it when you are done, you should not have issues with connection pools.
I understand, and I cannot say what would happen at 2k connections, but I cannot imagine the overhead of that many connections is healthy. Given that you are going to end up limitied by either the database or the cpu, I would consider rethinking my design. Perhaps some sort of buffering or delegation that permits fewer connections.
For example, I have an application that processes inbound EDI Files, many at a time. Each file has around 50k records that require an update in a database. Instead of executing 50,000 commands with one connection per file, I have a reader which produces changes that get queued for later update.
After the readers have created 5000 or so updates, the queue creates a datatable and passes it as a parameter to a stored procedure. This allows for one roundtrip, one transaction and one connection to handle 5000 updates from many files. We went from 200 updates per second to 17,000 updates per second.
SQLConnection) it is reset. No state remains from any previous use of that connection. – Richard Nov 18 '12 at 18:08