Not logged in - Login
< back

Connection Pooling

SQL connection pooling can be turned on or off by specifying values in the connection string.

Turn off:

Data Source=localhost;Integrated Security=SSPI;Pooling=false;

Turn on:

Data Source=localhost;Integrated Security=SSPI;Min Pool Size=5; Max Pool Size=50;