Table of Contents

Class ExecuteDbCommandEventArgs

Namespace
combit.Reporting.DataProviders
Assembly
combit.ListLabel31.CrossPlatform.dll

Provides data for the ExecuteDbCommand event.

public sealed class ExecuteDbCommandEventArgs : EventArgs
Inheritance
ExecuteDbCommandEventArgs
Inherited Members

Properties

Command

Gets or sets the database command that is about to be executed.

public IDbCommand Command { get; set; }

Property Value

IDbCommand

RecordLimit

Gets or sets a record limit that might be applied to the command. For example, this might be set to 1 when opening the Designer or 5 when drawing a crosstab preview. Modifying the query based on this limit could optimize performance.

public int? RecordLimit { get; set; }

Property Value

int?

TableName

Gets the table name associated with the command as defined in the Designer.

public string TableName { get; }

Property Value

string