MessageBox.Show("for loop, last row..."); //TEST CODE
问题 - 行执行后出现错误。可能是什么原因 ?当我从另一个数据库中获取我的结果集时,就没有这样的问题。:( 我该如何解决 ?
代码 -
public void Main()
{
OleDbDataAdapter oleDA = new OleDbDataAdapter();
DataTable dt = new DataTable();
DataColumn col = null;
DataRow row = null;
string strCols = "";
oleDA.Fill(dt, Dts.Variables["MyResultSet"].Value);
col = dt.Columns["MyColumn"];
int lastIdx = dt.Rows.Count - 1;
MessageBox.Show("int declared, for loop..."); //TEST CODE
//loop upto 2nd last data row
for (int i = 0; i <= lastIdx-1; i++)
{
row = dt.Rows[i];
strCols += row[col.Ordinal].ToString() + ", ";
}
MessageBox.Show("for loop, last row..."); //TEST CODE
row = dt.Rows[lastIdx];
strCols += row[col.Ordinal].ToString(); //!!! I GET ERROR HERE !
MessageBox.Show("strCols");
Dts.TaskResult = (int)ScriptResults.Success;
}
错误 -
Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IndexOutOfRangeException: There is no row at position -1.
at System.Data.RBTree`1.GetNodeByIndex(Int32 userIndex)
at System.Data.RBTree`1.get_Item(Int32 index)
at System.Data.DataRowCollection.get_Item(Int32 index)
at My-Long-Code-Goes-Here.csproj.ScriptMain.Main()
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
at Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTATaskScriptingEngine.ExecuteScript()