Is this the right way of declaration dbreaders when mulitple users access the same page?
public dbReader as system.Data.IDataReader
at class level or
Dim dbReader as System.Data.IDataReader
in each function inside a class.
What would be the best practice to make the dbReader thread safe in VB.Net?
Does declaring them as static makes it thread safe?
Thanks in Advance,