我目前正在创建一个 SSIS 程序,该程序从文件中读取数据,对该数据进行一些处理,并将其输出到 OLE DB 目标任务。但是,每次我运行我的应用程序时,我都会收到这个错误:“发生错误:索引超出了数组的范围”。我在脚本任务中多次更改了我的代码,但我似乎仍然得到这个错误。有谁知道可能是什么问题?如果是这样,任何提示和建议将不胜感激。谢谢。
这是我在脚本任务中的代码..
bool found=false;
try
{
while (Row.NextRow())
{
int Rows = 0;
int length = 0;
//int length = Row.Source.Length;
foreach (char c in Row.Source)
{
length++;
Console.Write(length);
}
while (found == false || length==0)
{
char c = Row.Source[Rows];
Rows++;
if (char.IsLetterOrDigit(c) || char.IsPunctuation(c))
{
length = length - 1;
}
else
{
while (length != 0)
{
Rows++;
if (Row.Source[Rows] != ' ')
{
Row.Source01 = Row.Source.Replace(Row.Source[Rows], ' ');
}
length = length - 1;
}
found = true;
}
}
found = false;
}
}
catch (Exception e)
{
bool pbCancel = false;
this.ComponentMetaData.FireError(0, "myScriptComponent", "An error occurred: " + e.Message, "", 0, out pbCancel);
}
}
}