Nov 14, 2009

Column does not belong to table Table

This type of error is encountered generally when you are dealing with ADO.net code in a .net application.


Resolution: Double check that the column name you are trying to access e.g. from a table inside a dataset is corrrect
Explanation: Generally what happens is that you might have mistyped the column name as for example 'keywrod' instead of 'keyword' and during run time you get this error. It is always good to be proactive regarding such issues and avoid it during coding itself.

No comments:

Post a Comment