SqlDataSource.ValidateCustomSqlQueryGlobal Event
In This Article
Provides the capability to check the validity of the custom SQL query used to supply SQL data sources with data.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
public static event ValidateCustomSqlQueryEventHandler ValidateCustomSqlQueryGlobal
#Event Data
The ValidateCustomSqlQueryGlobal event's data class is ValidateCustomSqlQueryEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Custom |
Gets a custom SQL query being validated. |
Exception |
Gets or sets the exception message returned after validation of the custom SQL query. |
Valid | Gets or sets whether or not the current SQL query is valid. |
#Remarks
Handle the ValidateCustomSqlQueryGlobal event to validate custom SQL for all queries created in your applications.
Note
The Validate
See Also