使用ApplyLogOnInfo动态更改CSV数据源

发布于 2024-11-29 20:44:47 字数 848 浏览 1 评论 0原文

我有一个 .rpt 文件,是通过使用 (Access/Excel (DAO) )选项将其数据源设置为文本 (csv) 文件来创建的。 现在,我希望使用 C# 代码加载相同的 .rpt 文件,每次我的 C# 代码都会更改输入文件,并且我希望根据新文本文件中的数据生成新报告。

我正在执行以下代码,当我将文件导出为 pdf 文档时,它仍然根据旧输入文件中的数据显示数据。

我已选中 .rpt 文件中的选项“使用报告保存数据”和“首次刷新时验证”。

我在这里缺少什么?

代码:

            cryRpt = new ReportDocument();
            cryRpt.Load(reportfile);

            Tables tables = cryRpt.Database.Tables;
            TableLogOnInfo tableLogonInfo;

            foreach (Table table in cryRpt.Database.Tables)
            {
                tableLogonInfo = table.LogOnInfo;
                tableLogonInfo.TableName = "MYdata_BS_NEW#csv";
                table.Location = "MYdata_BS_NEW#csv";
                table.ApplyLogOnInfo(tableLogonInfo);
            }

            cryRpt.Refresh();

// 此后我将报告导出为 pdf 文档。

I have a .rpt file that I have created by setting it's data source as a text (csv) file using the (Access/Excel (DAO) ) option.
Now I want the same .rpt file loaded using a C# code and each time my C# code will change the input file and I want a new report to be generated based on the data in the new text file.

I am doing the following code and when I export the file to a pdf document, it still displays the data according to the data in the old input file.

I have checked off the option in the .rpt file that says "save data with report" and "verify on first refresh".

What am I missing here?

CODE:

            cryRpt = new ReportDocument();
            cryRpt.Load(reportfile);

            Tables tables = cryRpt.Database.Tables;
            TableLogOnInfo tableLogonInfo;

            foreach (Table table in cryRpt.Database.Tables)
            {
                tableLogonInfo = table.LogOnInfo;
                tableLogonInfo.TableName = "MYdata_BS_NEW#csv";
                table.Location = "MYdata_BS_NEW#csv";
                table.ApplyLogOnInfo(tableLogonInfo);
            }

            cryRpt.Refresh();

// After this I export the report to pdf document.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文