Just wondering what is best practice for getting the values of a datareader. For example:
I have been doing this:
MyValue = Dr("ColumnName")
But have noticed other people doing:
MyValue = Dr.GetString("ColumnName")
I am intested to know the benifits of the 2nd method