Table of Contents

TSQLExecutingArgs Class

Event arguments passed to the OnSQLExecuting callback before a SQL statement is executed.

Remarks

The SQL property can be modified to replace the statement that will be sent to the database. Changing SQL automatically sets SQLModified to True.

Syntax

Unit: Aurelius.Events.Manager

TSQLExecutingArgs = class(TManagerArgs);

Properties

Name Description
Params Gets the collection of TDBParam values bound to the statement.
SQL Gets or sets the SQL text that will be executed. Setting this property marks SQLModified as True.
SQLModified Indicates whether the SQL property was modified by a callback handler.