ADO.NET Provider for Azure Analysis Services

Build 22.0.8462

Connection Pooling

The provider implements a standard ADO.NET connection pool. Set UseConnectionPooling to enable the pool. The following sections show how to configure and use them.

Working with Pooled Connections

Just as you would interact with a non-pooled connection, you use standard ADO.NET objects to get and close connections. But, in this case, the AASConnection object retrieved is a handle for the physical connection owned by the connection pool. When the connection is closed, instead of the connection being destroyed, the handle is returned to the pool, where it is available for the next connection request.

You must explicitly close the connection for it to be returned to the pool.

Configuring the Connection Pool

In addition to UseConnectionPooling, set the following connection properties to control the connection pool:

  • PoolMaxSize: Define the maximum number of connections that can be open at any given time.
  • PoolIdleTimeout: Set a limit to how long connections can remain open and idle. If this limit is exceeded, the connection is returned to the pool.
  • PoolWaitTime: Set a limit to how long new connection requests should wait for a connection to become available. If this limit is exceeded, the request returns an error. By default, connection requests wait forever for a connection to become available.

Connection Pooling with AASConnection

To use the default method for pooling connections, instantiate the AASConnection with UseConnectionPooling:

C#

using (AASConnection connection = new AASConnection("UseConnectionPooling=true;URL=asazure://southcentralus.asazure.windows.net/server;")) {connection.Open();}

VB.NET

Using (AASConnection connection = new AASConnection("UseConnectionPooling=true;URL=asazure://southcentralus.asazure.windows.net/server;")) 
  connection.Open()
End Using

Closing the Connection Pool

The connection pool is closed when the active process ends.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462