/** * Parent reference: ParentForeignKey Sources: Person_Identifier.person_id; Referenced Columns: * Person.person_id */ public final PersonIdentifierTable.Records getParentRecordsByPersonId( PersonTable.Record parentRecord, ConnectionContext cc) throws NamingException, SQLException { Records result = new Records( parentRecord, personIdForeignKey.getChildRowsByParentRow(cc, parentRecord.getRow())); return result; }
public final PersonIdentifierTable.Record createChildLinkedByPersonId( PersonTable.Record parentRecord) { return new PersonIdentifierTable.Record( table.createRow(personIdForeignKey, parentRecord.getRow())); }