|
I don't think I am going to be much help on this problem, but I'll to explain as much as I have been able to discover.
First, this is not a DevForce problem or a database problem. It's a problem caused by a locale or case-sensitivity incompatability between child and parent in a DataSet relation.
Here are a few examples of some incidents that I have found on the web that give the same exact error:
(1) Somewho had a problem and then discovered a solution (i.e., remove reference to unused table adapter)
http://www.eggheadcafe.com/software/aspnet/29213046/dataset-locale-problem.aspx - http://www.eggheadcafe.com/software/aspnet/29213046/dataset-locale-problem.aspx
(2) Cannot load XSD on a computer with a different regional setting.
http://connect.microsoft.com/VisualStudio/feedback/Workaround.aspx?FeedbackID=106466 - http://connect.microsoft.com/VisualStudio/feedback/Workaround.aspx?FeedbackID=106466
|
Visual Studio and .NET Framework Feedback Workarounds |
|
106466. |
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=106466 - When trying to open a Visual Studio solution containing a typed dataset, I get this error: Load DataSet Error Failed to load dataset because of the following error: Cannot add a DataRelation or Constraint that has different Locale or CaseSensitive settings between its parent and child tables. |
|
|
“DataTable.CaseSensitive" problem
http://www.developerfood.com/datatable-casesensitive-problem/microsoft-public-dotnet-framework-adonet/eb7a58e0-bac3-47c1-bba6-6c225392e0ae/article.aspx - http://www.developerfood.com/datatable-casesensitive-problem/microsoft-public-dotnet-framework-adonet/eb7a58e0-bac3-47c1-bba6-6c225392e0ae/article.aspx
"Cannot add a DataRelation or Constraint that has different Locale or CaseSensitive settings between its parent and child table"
The "DataTable.CaseSensitive" property is the cause because it's on for one table but not the other. The relation is a standard foreign key relation between two integer keys however (there are no other relations) so I don't see why this error should exist. I need the "CaseSensitive" property on for one of these tables however but not the other since it effects searching via "DataTable.Select()" for instance. Can anyone comment on this situation. Thanks.
|