Exforsys
+ Reply to Thread
Results 1 to 2 of 2

Hello help me for this question

This is a discussion on Hello help me for this question within the Microsoft .NET forums, part of the Programming Talk category; What is the difference between web application, enterprise application? and What is connection pooling,how it implement this?and what is the ...

  1. #1
    Raju.AVN is offline Junior Member Array
    Join Date
    Aug 2005
    Answers
    1

    Hello help me for this question

    What is the difference between web application, enterprise application?
    and
    What is connection pooling,how it implement this?and what is the use?


  2. #2
    cbdarts is offline Member Array
    Join Date
    Apr 2006
    Answers
    40
    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


Latest Article

Network Security Risk Assessment and Measurement

Read More...