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
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.