I m using the Enterprise lib to connect Oracle Database

class Customer{
     private readonly Database _db;
      public Customer(){
            _db = = DatabaseFactory.CreateDatabase(_userSettings.ConnstringName);
       }

   .. stuff to use this connection..

}

When I run the application and opens multiple screen now Oracle show multiple session for same Application

Also I tried by changing code as

class Customer{
         private readonly Database _db;
          public Customer(){
                _db = = (_userSettings.GetInstance().GetDatabase);
           }

       .. stuff to use this connection..

    }

*_userSettings is a singleton object*

But same thing happens..?

What's going wrong?

Pls Help

Thanks.

link|improve this question

50% accept rate
feedback

2 Answers

There is too little information here to give an answer. We'd need to see more about your connection code. What version of oracle are you using?

What may be happening, is you may not be setting a timeout on your user's session, so that these sessions you keep making are staying active.

link|improve this answer
the connection string i m using is: connectionString="DATA SOURCE=xyz:1521/orcl;PERSIST SECURITY INFO=True;USER ID=user;password=pwd" providerName="Oracle.DataAccess.Client" also I tried with connectionString="DATA SOURCE=xyz:1521/orcl;PERSIST SECURITY INFO=True;USER ID=user;password=pwd;Min Pool Size=10;Connection Lifetime=60;Connection Timeout=60;Incr Pool Size=5; Decr Pool Size=2" providerName="Oracle.DataAccess.Client" – Akhil Apr 19 '11 at 14:36
feedback

You need to explicitly close the connection using Close() or use a using block to ensure the unmanaged code is garbage collected properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.