DRCPPurity
Session purity specifies whether an application can reuse a pooled session (Pooled) or must use a new session (New).
                  
Declaration
// C#
public OracleDRCPPurity DRCPPurity {get; set;}Property Value
OracleDRCPPurity Enumeration values.
                  
Exceptions
- 
                        InvalidOperationException()- ifCPVersion=1.0and theDRCPPurityis set to a non-null / non-empty string. Applies to unmanaged ODP.NET only.
- 
                        InvalidOperationException()- if theDRCPPurityis set to a non-null / non-empty string after opening a connection.
- 
                        InvalidOperationException()- if DRCP is not enabled and theDRCPPurityis set to a non-null / non-empty string.
Remarks
The default value is Pooled.
                  
If set to New, then ODP.NET will dispense a new DRCP connection, rather than try to find an existing connection from the DRCP. In general, this property is used by applications that want a connection without any preexisting session state set.
                  
If set to Pooled, then ODP.NET will first attempt to use a preexisting connection, that already exists in the DRCP pool.
                  
Using this property will not cause a new DRCP to be created, just a new connection from an existing DRCP.