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.v18.2.dll

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:

Library Object Type Path to CloseConnection
Cross-Platform Class Library SqlDataSource
.ConnectionOptions.CloseConnection
Dashboard DashboardSqlDataSource
.ConnectionOptions.CloseConnection

Remarks

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

See Also