count number of column in datatable c#

count number of column in datatable c#


DataTable Sheets = connectionString.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);

foreach (DataRow dr in Sheets.Rows)
{
    string sheetStr = dr[2].ToString().Replace("'", "");

    OleDbDataAdapter dataAdapter = new OleDbDataAdapter("select * from [" + sheetStr + "]", connectionString);

    var ds = new DataSet();
    dataAdapter.Fill(ds, "DataTable");
    DataTable data = ds.Tables["DataTable"];

    if (ds.Tables["DataTable"].Rows.Count > 0)
    {
        GetSetUploadExcelData(uploadExl, data, CompanyID, TenantID);
    }

}
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

count number of column in datatable c# count number of column in datatable c# Reviewed by Anil Singh on 11:50 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^