Skip to main content
A newer version of this page is available. .

ConnectionOptions.CloseConnection Property

Specifies whether or not a data connection should be closed after executing a query.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v21.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.Design

Declaration

[DefaultValue(true)]
public bool CloseConnection { get; set; }

Property Value

Type Default Description
Boolean true

true to close the connection immediately after executing a query; false to never close the connection.

Property Paths

You can access this nested property as listed below:

Object Type Path to CloseConnection
SqlDataSource
.ConnectionOptions .CloseConnection

Remarks

The CloseConnection property enables you to pass a query result set to subsequent queries.

See Also