views:

32

answers:

2
+1  Q: 

Connection Pooling

May I know if the connection pooling is applicable also for the window base application and not just for web base? Please advice. Thanks

+2  A: 

Connection pooling is applicable any time you will have multiple consumers contending for expensive-to-create connections.

codelark
which is probably less the case for a single user desktop application.
Thilo
+2  A: 

Roughly, everything that needs a connection might pool it. No matter if it is headlesss or a GUI application.

PartlyCloudy