簡體   English   中英

通過讀取行​​數據將新列添加到數據表

[英]Add new columns to a datatable by reading the row data

我需要通過讀取現有數據表第一行中的數據來向現有數據表添加列。 然后需要將數據從文本文件添加到新列中。 例如,請考慮以下表格作為現有數據表。 我在這里第一行提到了值(dm1,dm2等)。

圖片1

下面提供的是我需要的數據表。 dm4行數據和dm6行數據已添加到此處的兩個新列中

圖片2

有人可以幫我確定解決方案嗎? 提前致謝

private DataTable CreateDT1(string name, ListBox list)
    {            
        DataTable dt = new DataTable();          
        //there are many files in the list box
        string[] files = new string[list.Items.Count];
        for (int x = 0; x < list.Items.Count; x++)
        {
            object s = list.Items[x];
            files[x] = s.ToString();
        }

        int lineno = 0;
            //for each file in list box
            for (int i = 0; i < files.Length; i++)
            {
                int count = 0;  
                string file = files[i];
                using (System.IO.StreamReader sr = new System.IO.StreamReader(file))
                {                        
                    string line;                        

                    while ((line = sr.ReadLine()) != null)
                    {                         
                        if (line.Contains(name))//filtering the line which contains a specific string"
                        {                                

                            if (i == 0)
                            {                                    
                                if (lineno == 0)//first choosen line of the first text file. 
                                {
                                    //splitting the choosen line
                                    string[] split = line.Split(',');

                                    int result = split.Length;
                                    dt.Rows.Add();
                                    //Based on the number of split length of this row i have added columns
                                    for (int x = 0; x < result; x++)
                                    {
                                        DataColumn dc = new DataColumn(x.ToString(), Type.GetType("System.String"));
                                        dt.Columns.Add(dc);                                            
                                        dt.Rows[lineno][x+1] = split[x];
                                    }

                                }
                                else//splitting and adding other lines of the first text file
                                {
                                    string[] split = line.Split(',');
                                    int result = split.Length;

                                        dt.Rows.Add();
                                        for (int x = 0; x < result; x++)
                                        {
                                            dt.Rows[lineno][x + 1] = split[x];
                                        }                                                                                

                                }                                    
                            }

                            else//adding lines of other text files underneath the same columns
                            {                                    
                                if (count != 0)
                                {
                                    string[] split = line.Split(',');
                                    int result = split.Length;
                                    if (result+1 <= dt.Columns.Count)
                                    {
                                        dt.Rows.Add();
                                        for (int x = 0; x < result; x++)
                                        {
                                            dt.Rows[lineno][x + 1] = split[x];
                                        }

                                    }
                                    else//My issue occurs here when there are additional columns in the other files. Basically when the split length of a line is higher than the previous text files. Then i have to add a new column at the specific positions
                                    {                                            

                                        dt.Rows.Add();
                                        for (int x = 0; x < result; x++)
                                        {
                                            if (split[x]!=dt.Rows[0][x+1])
                                            {
                                            DataColumn dc = new DataColumn(split[x], Type.GetType("System.String"));
                                            dt.Columns.Add(dc);
                                            dt.Rows[lineno][x + 1] = split[x];
                                            }
                                        }

                                    }

                                }

                                else
                                {                                        
                                    lineno -= 1;
                                    count += 1;                                        
                                }

                              }                                

                            lineno += 1;                                
                        }

                    }

                }

            }               

        return dt;
}

如果將SQL查詢更改為SELECT dm1,dm2,dm3,NULL AS dm4,dm5,NULL作為dm6,dm7,則會得到一些空白值,您可以立即使用

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM