What is meant by strongly typed datasets in .Net? Can anybody explain with a clear and brief example?
And also, what is the difference between strongly typed and wea
I'm guessing that the distinction goes like so:
Strongly typed datasets are where the dataset knows the type associated with each column at or before the dataset is filled.
Weakly typed datasets force the dataset to guess what the type might be. In cases where a column might be null OR a number, the dataset might incorrectly guess that the intended type is a string and not a nullable int.