Creates an arrow connecting two tables.
SyntaxVB6
Copy Code
|
|---|
Public Function CreateRelation( _ |
C++
Copy Code
|
|---|
public: |
The source table.
The 0-based index of the row of the source table.
The destination table.
The 0-based index of the row of the destination table.
A reference to an Arrow object, representing the newly created arrow.
RemarksCreates an arrow, pointing from a row of the source table-object (pTableSrc) to a row of the destination table-object (pTableDst). These rows could visually represent table fields in entity-relationship diagrams. You can create many arrows connected to a single row of table.
See Also