gpt4 book ai didi

c# - SSIS 2012 - 第二次脚本执行时变量为空

转载 作者:行者123 更新时间:2023-11-30 22:55:21 25 4
gpt4 key购买 nike

我在数据流中有一个脚本组件转换。在这个脚本组件中,我从一个对象变量中读取了一个表。通过脚本的第一条记录工作正常。变量正确读取并完美加载到列表对象中。

下一条记录传递到脚本时出错了。

查看它报告记录计数为 44 的变量,当它尝试加载到我的列表中时,我得到一个行数 = 0

下面是加载列表的脚本

    List<PublicHoliday> PublicHolidays = new List<PublicHoliday>();


OleDbDataAdapter A = new OleDbDataAdapter();
DataTable dt = new DataTable();
A.Fill(dt, Variables.LISTPublicHolidays);

foreach (DataRow row in dt.Rows)
{
object[] array = row.ItemArray;
var Public = new PublicHoliday()
{
DateKey = int.Parse(array[0].ToString()),
FullDateAlternateKey = DateTime.Parse(array[1].ToString())
};
PublicHolidays.Add(Public);
}

我错过了什么吗?以前有人遇到过这个问题吗?

最佳答案

试图找出问题

来自以下OleDbDataAdapter.Fill Method (DataTable, Object) documentation :

CAUTION
When using ADO Recordset or Record objects in conjunction with .NET Framework applications, always call Close when you are finished. This ensures that the underlying connection to a data source is released in a timely manner, and also prevents possible access violations due to unmanaged ADO objects being reclaimed by garbage collection when existing references still exist.

同时引用Filling a DataSet with an ADO Recordset or Record - documentation :

Note that the OleDbDataAdapter.Fill overload that takes a DataSet and an ADO object implicitly calls Close on the ADO object when the Fill operation is complete. You need to explicitly close the ADO Recordset or Record object after calling the OleDbDataAdapter.Fill overload that takes a DataTable.

这意味着当通过 RecordSet 调用 Fill 方法时,您必须在第二次使用它之前关闭它,否则将不会返回任何行。


可能的解决方法

我真的不知道如何从 Object 变量关闭 Recordset,但我会尝试提供一些可能的解决方法:

(1) 保存到DataTable

在下面的链接中,他们提到了以下解决方法:

  1. As soon as my Recordset @[User::FilePath] gets populated, I use a Script Task , and Fill it into a DataSet ds using OledbDataAdapter and DataTable.

  2. Then, in the same script task, I put the value of ds to a new variable of Object Type @[User::FilePathDataTable].

By doing this, the DataType of FilePathDataTable becomes System.Data.DataTable.

This datatable can easily be used any number of times inside the For-Each Loop.

I don't use DataAdapter.Fill() method inside ForEach Loop of ssis now. I just assign the Value of @[User::FilePathDataTable] to a new dataset, and use it for the iterations.

引用

(2) 使用记录集源

尝试使用 RecordSet Source 代替使用脚本组件从对象变量生成行。

(3) Cast variable as Recordset

我没有测试过这种方法,我不确定它是否适用于对象变量

它需要对 Microsoft ActiveX 数据对象的引用。

List<PublicHoliday> PublicHolidays = new List<PublicHoliday>();

var rs = ((ADODB.Recordset)Variables.LISTPublicHolidays);
OleDbDataAdapter A = new OleDbDataAdapter();
DataTable dt = new DataTable();
A.Fill(dt, rs);

foreach (DataRow row in dt.Rows)
{
object[] array = row.ItemArray;
var Public = new PublicHoliday()
{
DateKey = int.Parse(array[0].ToString()),
FullDateAlternateKey = DateTime.Parse(array[1].ToString())
};
PublicHolidays.Add(Public);
}
rs.Close();

更新 1

根据下面的评论尝试从第一个脚本和第二个脚本中删除 rs.Close(); 方法,然后再执行 Fill 方法使用 rs。 MoverFirst() 方法能够从记录集中检索信息。

基于以下链接删除了第三种方法:

关于c# - SSIS 2012 - 第二次脚本执行时变量为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55293064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com