我在文本文件目录中有以下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;
}
}
}
}
编辑:更新了代码布局
答案 0 :(得分:1)
您必须在脚本转换编辑器的Inputs and Outputs
窗格中的输出中添加一列。
这将使您的脚本可以访问该列。