Possible Duplicate:
Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints
I The load event i wrote this code:
private DataSet1 ds1 = new DataSet1();
private SqlDataAdapter da1 = new SqlDataAdapter();
ds1.Clear();
da1 = new SqlDataAdapter("select * from Département, division,Sérvice where Département.Num_Département = Division.Num_Département_Département and Sérvice.Num_Division_Division = Division.Num_Division", sql.cn);
da1.Fill(ds1, "Sérvice");
da1.Fill(ds1, "Division");
da1.Fill(ds1, "Département");
but when i run the form it gives me this error :
Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints.
What am I have to do ?