kellyputty
Technical User
The following tables:
When I update anything in the Institutions table AcademicEducations.ClientID looses its value ( it turns to zero from it's previous "correct" value). This results in violating referential integrity. Anyone know why that is?
I think it might be because I have to save the table on the one side of the one-many relationship first. Does anyone know how to do that?
Thanks,
KellyPutty
Code:
Clients:
ClientID(P autonumber)***
LastName
FirstName
SSNum
AcademicEducations:
ClientID(F , number, long integer)****
HighestObtained
AcademicEducationsID (P autonumber)
Institutions:
ClientID(F , number, long integer)****
Where
StillAttending
InstitutionsID(P autonumber)
When I update anything in the Institutions table AcademicEducations.ClientID looses its value ( it turns to zero from it's previous "correct" value). This results in violating referential integrity. Anyone know why that is?
I think it might be because I have to save the table on the one side of the one-many relationship first. Does anyone know how to do that?
Thanks,
KellyPutty