In this article, we will learn how we can convert Microsoft ADOMD data reader to datatable. As you all know, a data reader is the most efficient way for looping through the data. Performance wise, a data reader is faster than any of the other ways like data adapter and cell set in MDX result. So in few situations, you may need to convert this data reader to a data table. Here in this post, we will discuss how we can convert it. I hope you will like it.
Background
For the past few months, I have been working with Microsoft ADOMD data sources. And I have written some articles as well that will describe the problems I have encountered so far. If you are new to ADOMD, I strongly recommend that you read my previous articles that you may find useful when you work with ADOMD data sources. You can find those article links here: ADOMD Data Sources
Why
You might think, why I am not using other two ways (data adapter and cell set). I will answer it here. I am handling large set of data, so when I use data adapter and cell set, it was a bit slow to get the output. So I was just checking the performance by using data reader. It was fast enough when I use data reader. So we can order these three as following by performance.
Data reader >> Data Adapter >> Cell Set
Using the Code
The following is the function that does what was explained above.
#region Convert Datareader toDatatable
public DataTable ConvertDataReaderToDataTable(string query, string myConnection)
{
AdomdConnection conn = new AdomdConnection(myConnection);
try
{
try
{
conn.Open();
}
catch (Exception)
{
}
using (AdomdCommand cmd = new AdomdCommand(query, conn))
{
AdomdDataReader rdr;
cmd.CommandTimeout = connectionTimeout;
using (AdomdDataAdapter ad = new AdomdDataAdapter(cmd))
{
DataTable dtData = new DataTable("Data");
DataTable dtSchema = new DataTable("Schema");
rdr = cmd.ExecuteReader();
if (rdr != null)
{
dtSchema = rdr.GetSchemaTable();
foreach (DataRow schemarow in dtSchema.Rows)
{
dtData.Columns.Add(schemarow.ItemArray[0].ToString(),
System.Type.GetType(schemarow.ItemArray[5].ToString()));
}
while (rdr.Read())
{
object[] ColArray = new object[rdr.FieldCount];
for (int i = 0; i < rdr.FieldCount; i++)
{
if (rdr[i] != null) ColArray[i] = rdr[i];
}
dtData.LoadDataRow(ColArray, true);
}
rdr.Close();
}
return dtData;
}
}
}
catch (Exception)
{
throw;
}
finally
{
conn.Close(false);
}
}
#endregion;
Here, we are creating two data tables, dtData
and dtSchema
where dtData
is for binding the data and dtSchema
is for binding the schema.
Creating Data Tables
DataTable dtData = new DataTable("Data");
DataTable dtSchema = new DataTable("Schema");
Execute Data Reader
Now we will execute the reader as follows:
rdr = cmd.ExecuteReader();
Get the Schema
To generate the schema, we can call the function GetSchemaTable()
which is a part of your data reader.
To use this function, you must include Microsoft.AnalysisServices.AdomdClient.dll.
Adding the Columns Headers to the dtData
The next thing is to add the header names to the data table dtData
.
foreach (DataRow schemarow in dtSchema.Rows)
{
dtData.Columns.Add(schemarow.ItemArray[0].ToString(),
System.Type.GetType(schemarow.ItemArray[5].ToString()));
}
Load the Data to dtData
To load the data, we are using a function LoadDataRow()
which expects an object as parameter. This will find and update a specific row, if the matching row is not found, it will create another row with the given values.
Convert data reader to data table
object[] ColArray = new object[rdr.FieldCount];
for (int i = 0; i < rdr.FieldCount; i++)
{
if (rdr[i] != null) ColArray[i] = rdr[i];
}
dtData.LoadDataRow(ColArray, true);
Conclusion
Have you ever gone through this kind of requirement? Did I miss anything that you may think is needed?. I hope you liked this article. Please share your valuable suggestions and feedback.
Your Turn. What Do You Think?
A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C-Sharp Corner, Stack Overflow, ASP.NET Forums or Code Project instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I am able to.