SSIS 2012 C# 脚本任务数据源 - 没有行的数据

本文关键字:数据 数据源 2012 脚本 任务 SSIS | 更新日期: 2023-09-27 18:33:12

SSIS 2012 中尝试将 C# 脚本任务用作数据流任务的数据源时遇到问题。我将运行一个更大的查询,但现在我只想证明这会起作用,但到目前为止它不会。下面是代码,只返回一个字段,但是一旦它到达姓氏 = reader.getstring() 的行,它会抛出一个异常,指出行/列没有可用的数据。我知道查询返回 10 行,不确定发生了什么。我按照以下链接编写了代码:https://msdn.microsoft.com/en-us/library/ms136060.aspx

有什么建议吗?

using System;
using System.Data;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
using Microsoft.SqlServer.Dts.Runtime.Wrapper;
using System.Data.OleDb;

[Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]
public class ScriptMain : UserComponent
{
OleDbDataReader reader;
OleDbConnection myConnection;
OleDbCommand myCommand;
public override void PreExecute()
{
    base.PreExecute();

    string sConnectionString = "Provider=MSDAORA.1;User ID = USER;Password=PASS;Data Source=SERVER;persist security info = false";
  //  string oracleQuery = Variables.OracleSQL;
    string oracleQuery = "select Name from Name_Table where rownum < 10";
    myConnection = new OleDbConnection(sConnectionString);
    myCommand = new OleDbCommand(oracleQuery, myConnection);
    myConnection.Open();
    reader = myCommand.ExecuteReader();
}
/// <summary>
/// This method is called after all the rows have passed through this component.
///
/// You can delete this method if you don't need to do anything here.
/// </summary>
public override void PostExecute()
{
    base.PostExecute();
    reader.Close();
    /*
     * Add your code here
     */
}
public override void CreateNewOutputRows()
{
   Output0Buffer.AddRow();
   Output0Buffer.Name = reader.GetString(0);
}

}

SSIS 2012 C# 脚本任务数据源 - 没有行的数据

来自 msdn:

OleDbDataReader 的默认位置在第一个之前 记录。因此,必须调用 Read 才能开始访问任何数据。

移动到下一行时,还需要调用 Read 方法。因此,请在脚本中尝试以下操作:

public override void CreateNewOutputRows()
{
   while (reader.Read())
   {
      Output0Buffer.AddRow();
      Output0Buffer.Name = reader.GetString(0);
   }
}

实际上,这是您链接到的页面中采用的方法。