Unforunately, there isn't a clean cut way to see the values in the
debugger.
i'm typing this from memory, but should get you started ..........
it probably has some syntax errors, but should be correctable.
public void ShowDataReaderValues( IDataReader idr)
{
bool keepChecking = true;
int counter = 0;
if (null != idr)
{
while (idr.Read())
{
while keepChecking = true;
{
if (!idr.IsDBNull(counter))
{
object o = idr.GetValue(counter++);
Console.WriteLine (o.ToString());
}
if (counter>idr.Depth)
{
keepChecking=false;
}
}
}
}