B
Brian K. Maher
Guest
David, By default .NET Open Client, when used in session-free mode, has its connection pool set to grab a new connection if none are available in the pool and to not release them. You can change this by setting several properties. It is also important to ensure that you are creating connections properly. For session-free you should instantiate and configure only one Connection object then you need to pass that one object to each AppObjects constructor (this ensures there is only one connection pool). Failure to do this will create multiple pools, even if you instantiate new Connection objects that have the exact same settings). Brian
Continue reading...
Continue reading...