Bde.DBTables.TSQLUpdateObject.GetSQL

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetSQL(UpdateKind: TUpdateKind): TStrings; virtual; abstract;

C++

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

Properties

Type Visibility Source Unit Parent
function protected
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TSQLUpdateObject

Description

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