Datasnap.Provider.TDataSetProvider.InternalExecute
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: protected | |
Source: Datasnap.Provider.pas Datasnap.Provider.hpp
| |
Unit: Datasnap.Provider | |
Parent: TDataSetProvider |
Delphi
procedure InternalExecute(const CommandText: OleStr; var Params: OleVariant); override;
C++
virtual void __fastcall InternalExecute(const System::Types::OleStr CommandText, System::OleVariant &Params);
Description
Provides the underlying implementation of the Execute method.
The Execute method calls InternalExecute to execute the appropriate SQL statement after calling DoBeforeExecute to generate a BeforeExecute event and apply the CommandText and Params.
CommandText is an SQL statement that replaces the SQL of an associated query, or the name of a stored procedure that replaces the associated stored procedure.
On entry, Params supplies parameter values for the query, stored procedure, or CommandText string.