| Author |
Desktop App and Connection Pools
|
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
|
Anyone ever use a Connection Pool for desktop applications? I typically just use one open connection throughout the lifetime of the application but wondered if I should be doing things differently.
|
 |
Julian Kennedy
Ranch Hand
Joined: Aug 02, 2004
Posts: 823
|
|
Gregg, If the app only ever requires one connection, what would be the value of a pool? A connection pool is useful (essential?) to improve performance at the server-side in an application that supports multiple clients. I suppose it also depends on how DB intensive your app is. Jules
|
 |
 |
|
|
subject: Desktop App and Connection Pools
|
|
|