FireDAC.DatS.TFDDatSForeignKeyConstraint.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create; override;
constructor Create(AParentColumn, AChildColumn: TFDDatSColumn;
ADeleteRule: TFDDatSConstraintRule = crCascade;
AUpdateRule: TFDDatSConstraintRule = crRestrict); overload;
constructor Create(const AParentColumns, AChildColumns: array of TFDDatSColumn;
ADeleteRule: TFDDatSConstraintRule = crCascade;
AUpdateRule: TFDDatSConstraintRule = crRestrict); overload;
constructor Create(const AName: String; AParentColumn, AChildColumn: TFDDatSColumn;
ADeleteRule: TFDDatSConstraintRule = crCascade;
AUpdateRule: TFDDatSConstraintRule = crRestrict); overload;
constructor Create(const AName: String; const AParentColumns, AChildColumns: array of TFDDatSColumn;
ADeleteRule: TFDDatSConstraintRule = crCascade;
AUpdateRule: TFDDatSConstraintRule = crRestrict); overload;
constructor Create(const AName, AParentTableName, AParentColumnNames,
AChildColumnNames: String;
ADeleteRule: TFDDatSConstraintRule = crCascade;
AUpdateRule: TFDDatSConstraintRule = crRestrict); overload;
constructor Create(const AName: String; AParentTable: TFDDatSTable;
const AParentColumnNames, AChildColumnNames: String;
ADeleteRule: TFDDatSConstraintRule = crCascade;
AUpdateRule: TFDDatSConstraintRule = crRestrict); overload;

C++

__fastcall virtual TFDDatSForeignKeyConstraint()/* overload */;
__fastcall TFDDatSForeignKeyConstraint(TFDDatSColumn* AParentColumn, TFDDatSColumn* AChildColumn, TFDDatSConstraintRule ADeleteRule, TFDDatSConstraintRule AUpdateRule)/* overload */;
__fastcall TFDDatSForeignKeyConstraint(TFDDatSColumn* const *AParentColumns, const System::NativeInt AParentColumns_High, TFDDatSColumn* const *AChildColumns, const System::NativeInt AChildColumns_High, TFDDatSConstraintRule ADeleteRule, TFDDatSConstraintRule AUpdateRule)/* overload */;
__fastcall TFDDatSForeignKeyConstraint(const System::UnicodeString AName, TFDDatSColumn* AParentColumn, TFDDatSColumn* AChildColumn, TFDDatSConstraintRule ADeleteRule, TFDDatSConstraintRule AUpdateRule)/* overload */;
__fastcall TFDDatSForeignKeyConstraint(const System::UnicodeString AName, TFDDatSColumn* const *AParentColumns, const System::NativeInt AParentColumns_High, TFDDatSColumn* const *AChildColumns, const System::NativeInt AChildColumns_High, TFDDatSConstraintRule ADeleteRule, TFDDatSConstraintRule AUpdateRule)/* overload */;
__fastcall TFDDatSForeignKeyConstraint(const System::UnicodeString AName, const System::UnicodeString AParentTableName, const System::UnicodeString AParentColumnNames, const System::UnicodeString AChildColumnNames, TFDDatSConstraintRule ADeleteRule, TFDDatSConstraintRule AUpdateRule)/* overload */;
__fastcall TFDDatSForeignKeyConstraint(const System::UnicodeString AName, TFDDatSTable* AParentTable, const System::UnicodeString AParentColumnNames, const System::UnicodeString AChildColumnNames, TFDDatSConstraintRule ADeleteRule, TFDDatSConstraintRule AUpdateRule)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
FireDAC.DatS.pas
FireDAC.DatS.hpp
FireDAC.DatS TFDDatSForeignKeyConstraint

Description




Constructs an object and initializes its data before the object is first used.

FireDAC.DatS.TFDDatSForeignKeyConstraint.Create inherits from System.TObject.Create. All content below this line refers to System.TObject.Create.

Constructs an object and initializes its data before the object is first used.

Create constructs an object. The purpose, size, and behavior of objects differ greatly. The Create constructor defined by TObject allocates memory but does not initialize data.

Descendant objects usually define a constructor that creates the particular kind of object and initializes its data.

Note: If an exception escapes from a constructor, the object's destructor is called to clean up the failed instance.

See Also