This is a discussion on Hello help me for this question within the Microsoft .NET Tutorials and Articles forums, part of the Articles and Tutorials category; What is the difference between web application, enterprise application? and What is connection pooling,how it implement this?and what ...
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
A Web application is a program that runs over the internet - basically web page(s) with a server-side application. An enterprise application can be a stand-alone application, or a server-side application, it can be programmed to perform a wider range of tasks.
Connection pooling is a concept, where a number of connections are kept ready and waiting for requests (it occupies that much memory, but its really faster than creating a fresh connection). Most programs use connection pooling by default, so you dont need to do anything. If you are writing a program, you should initialize a fixed number connections when you start, and not destroy connection objects when you reach that number. This way your connections remain in RAM - "pooled" as it can be called. Chaitanya |