Failed to Enable Constraints-No table errors

  • Thread starter Thread starter wg0122
  • Start date Start date
W

wg0122

I have created a new record in a table and upon trying to display that
record I'm getting the Failed to Enable Constraints error. I have
verified that both the dataset and each table within the dataset do not
have any errors. Thus, I'm totally confused as to where my problem
lies.

I'm new to the whole .NET arena so any suggestions or thoughts would be
greatly appreciated. I can supply more details if need be - just ask.


Wendy
 
Wendy - this could be a bunch of different stuff.
1- You have Null values where they're not allowed
2- You have an inconsistent datatype
3- You have a primary key violation or duplicate violation
4- You have a different names in the column that's queried compared to the
column in the dataset (check your spellings, column names and colum
mappings).
 
Back
Top