0

我有以下 c# 代码用于在文本文件的目录中引入,并且需要在脚本组件的输出中添加一列,以便我可以捕获此循环中的每个文件名并将其添加到名为 FILENAME 的列中的每一行。这是 SSIS 中脚本转换组件的一部分,因此正常的派生列任务将不起作用。

我怎么能做到这一点,因为我似乎无法创建一个列,只是用 var 文件的内容填充它?

public override void CreateNewOutputRows()
{
    foreach (var file in Directory.GetFiles(@"C:\Pre\DataSource2_W\TextFiles\Batch1\", "*.txt"))
    { 

        string _nextLine;
        string[] _columns;
        char[] delimiters;

        delimiters = "|".ToCharArray();
        _nextLine = _reader.ReadLine();

        string[] lines = File.ReadAllLines(file, Encoding.UTF8);

        //Start at index 2 - and keep looping until index Length - 2 
        for (int i = 3; i < lines.Length - 2; i++)                  
        { _columns = lines[i].Split('|');    

                // Check if number of cols is 6
            if (_columns.Length > 4)
            {
                JazzORBuffer.AddRow();
                JazzORBuffer.Server = _columns[0];
                JazzORBuffer.Country = _columns[1];
                JazzORBuffer.QuoteNumber = _columns[2];
                JazzORBuffer.DocumentName = _columns[3];
                JazzORBuffer.CompanyNameSoldTo = _columns[4];

            }
            else
            {
                // Debug or messagebox the line that fails

                Thread t = new Thread(() => MessageBox.Show("file" + "Cols:" + _columns.Length.ToString() + " Line: " + lines[i])); 
                t.SetApartmentState(ApartmentState.STA); 
                t.Start(); 

                //MessageBox.Show("file" + "Cols:" + _columns.Length.ToString() + " Line: " + lines[i]);
                //return;
            }   
        }
    } 
}

编辑:更新的代码布局

4

1 回答 1

1

您必须Inputs and Outputs在脚本转换编辑器窗格中的输出中添加一列。

这将使您的脚本可以访问该列。

于 2012-05-24T12:08:40.303 回答