Skip to content

ExecutingSqlStatementSqliteFeatureSourceEventArgs

Namespace: ThinkGeo.Core

Event arguments that describe a SQL statement about to be executed by SqliteFeatureSource.

public class ExecutingSqlStatementSqliteFeatureSourceEventArgs : System.EventArgs

Inheritance objectEventArgsExecutingSqlStatementSqliteFeatureSourceEventArgs

Properties

SqlStatement

Gets or sets the SQL statement that will be executed.

public string SqlStatement { get; set; }

Property Value

string

ExcutingSqlStatementType

Gets or sets the type of SQL statement being executed.

public ExecutingSqlStatementType ExcutingSqlStatementType { get; set; }

Property Value

ExecutingSqlStatementType

FeatureQueryingExtent

Gets the extent associated with the request when applicable.

public RectangleShape FeatureQueryingExtent { get; }

Property Value

RectangleShape

Constructors

ExecutingSqlStatementSqliteFeatureSourceEventArgs(string)

Initializes a new instance of the ExecutingSqlStatementSqliteFeatureSourceEventArgs class.

public ExecutingSqlStatementSqliteFeatureSourceEventArgs(string sqlStatement)

Parameters

sqlStatement string

ExecutingSqlStatementSqliteFeatureSourceEventArgs(string, ExecutingSqlStatementType, RectangleShape)

Initializes a new instance of the ExecutingSqlStatementSqliteFeatureSourceEventArgs class.

public ExecutingSqlStatementSqliteFeatureSourceEventArgs(string sqlStatement, ExecutingSqlStatementType sqlStatementType, RectangleShape featureQueryingExtent)

Parameters

sqlStatement string

sqlStatementType ExecutingSqlStatementType

featureQueryingExtent RectangleShape