DataReader Method of DataSet conversion

Source: Internet
Author: User
public static DataSet Convertdatareadertodataset (SqlDataReader Reader)
{
DataSet DataSet = new DataSet ();
Todo
{
Create New Data table

DataTable schematable = reader. GetSchemaTable ();
DataTable datatable = new DataTable ();

if (schematable!= null)
{
A query returning Records was executed

for (int i = 0; i < SchemaTable.Rows.Count; i++)
{
DataRow DataRow = schematable.rows[i];
Create A column name this is unique in the data table
String columnName = (string) datarow["ColumnName"]; + "//ADD the column definition to the" data table
DataColumn column = new DataColumn (ColumnName, (Type) datarow["DataType");
DATATABLE.COLUMNS.ADD (column);
}

DATASET.TABLES.ADD (dataTable);

Fill The data table we just created

while (reader. Read ())
{
DataRow DataRow = Datatable.newrow ();

for (int i = 0; i < reader. FieldCount; i++)
datarow[i] = reader. GetValue (i);

DATATABLE.ROWS.ADD (DataRow);
}
}
Else
{
No records were returned

DataColumn column = new DataColumn ("rowsaffected");
DATATABLE.COLUMNS.ADD (column);
DATASET.TABLES.ADD (dataTable);
DataRow DataRow = Datatable.newrow ();
Datarow[0] = reader. RecordsAffected;
DATATABLE.ROWS.ADD (DataRow);
}
}
while (reader. NextResult ());
return dataSet;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.