Default values for some OCI parameters in connection string

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
andreparadis
Posts: 1
Joined: Wed 08 Feb 2012 19:37

Default values for some OCI parameters in connection string

Post by andreparadis » Wed 08 Feb 2012 19:45

Hi,

The documentation does not specify what are the default values for the following parameters related to OCI session pooling:

OciSessionPoolAllowWaiting
OciSessionPoolConnectionLifetime
OciSessionPoolIncrement
OciSessionPoolMaxSize
OciSessionPoolMinSize

Could you specify what are the default values when oci session pooling is enabled.

Thanks

Andre

Pinturiccio
Devart Team
Posts: 2420
Joined: Wed 02 Nov 2011 09:44

Post by Pinturiccio » Fri 10 Feb 2012 13:14

When oci session pooling is enabled the following parameters have the following default values:

Code: Select all

OciSessionPoolAllowWaiting = true;
OciSessionPoolConnectionLifetime = 0;
OciSessionPoolIncrement = 1;
OciSessionPoolMaxSize = 100;
OciSessionPoolMinSize = 0;

Post Reply