SqlDataReader, how is it done?

  • Thread starter Thread starter Marius Horak
  • Start date Start date
It has no *public* constructor; it almost certainly has an internal
one, that SqlCommand can use.

Have checked via reflector, and sure enough:

internal SqlDataReader(SqlCommand command, CommandBehavior behavior)
{...}

Marc
 
Back
Top