![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 Manual for RAD Studio XE (Delphi) » Using ElevateDB » Setting Master-Detail Links on Tables |
Customer Table Column # Name DataType Size ---------------------------------------------- 1 CustomerID ftString 10 2 CustomerName ftString 30 3 ContactName ftString 30 4 Phone ftString 10 5 Fax ftString 10 6 EMail ftString 30
Orders Table Column # Name DataType Size ---------------------------------------------- 1 CustomerID ftString 10 2 OrderNumber ftString 10 3 OrderDate ftDate 0 4 OrderAmount ftBCD 2 Index Name Columns In Index Options ------------------------------------------------------ Primary_Key CustomerID;OrderNumber ixPrimary
begin
with OrdersTable do
begin
{ Set to the natural order, which in this case
is the primary key }
IndexName:='';
{ Assign the MasterSource property }
MasterSource:=CustomerSource;
{ Set the MasterColumns property to point to the
CustomerID column from the Customer table }
MasterColumns:='CustomerID';
end;
end;begin
with OrdersTable do
begin
{ Set to the CustomerID column }
IndexFieldNames:='CustomerID';
{ Assign the MasterSource property }
MasterSource:=CustomerSource;
{ Set the MasterColumns property to point to the
CustomerID column from the Customer table }
MasterColumns:='CustomerID';
end;
end;This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

