using (SqlConnection connection = new SqlConnection(connectionString))
{
using (SqlCommand command = new SqlCommand(sqlCommand, connection))
{
command.CommandType = CommandType.Text;
connection.Open();
using (SqlDataReader reader = command.ExecuteReader())
{
DataTable datatable = new DataTable();
datatable.Load(reader);
return datatable;
}
}
}
Running this code returns an empty DataTable. However, looping through reader.Read()
and printing to the debug console shows that the reader has data and it prints the expected data. Also, When I expand the reader object during debugging, hasRows is true and the field count is right for the number of columns returned.
There was a similar post here
Trouble loading SQL Data Reader data into DataTable
but the answer essentially was, just don't use it, use a SqlDataAdapter
. I would prefer to use it and the DataTable
has a load method that takes an IDataReader DataTable.Load(IDataReader)
. I just don't know why the reader is working when I print it to the debug window but not when I load it into the DataTable
. Am I just overlooking something?