Hi there,
i have 2 tables, Account and Client, with a relation one-to-many from Account to Client.
In table Client, i have a foreign key for the primary key of table Account.
When i associate a Client to an Account, i do the following:
client.accountID = value;
When i want to remove that association, i do the following:
client.accountID = null;
Here's the problem: Sometimes when i try to remove the association, it doesn't work!
Does anyone know why sometimes it works, and sometimes it don't????
Thanks in advance.
Nelson