Bde.DBTables.TUpdateSQL.GetSQL

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TUpdateSQL

Delphi

function GetSQL(UpdateKind: TUpdateKind): TStrings; override;

C++

virtual System::Classes::TStrings* __fastcall GetSQL(Data::Db::TUpdateKind UpdateKind);

Description

Returns the SQL statement that performs a specified update operation.

Bde.DBTables.TUpdateSQL.GetSQL inherits from Bde.DBTables.TSQLUpdateObject.GetSQL. All content below this line refers to Bde.DBTables.TSQLUpdateObject.GetSQL.

Returns the SQL statement that performs a specified update operation.

Override GetSQL to allow the update object to access an SQL statement that applies an update of the type specified by UpdateKind.

GetSQL provides the underlying implementation for the SQL property in the descendant class TUpdateSQL.

See Also