彩票走势图

FastReport.NET 2023更新功能揭秘(二):新增连接到 MsSQL 存储过程的功能

原创|产品更新|编辑:何家巧|2022-12-06 11:58:39.093|阅读 157 次

概述:今天我们​继​续讲解 FastReport .NET的更​新功能:添加了连接到 MsSQL 存储过程的功能。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

FastReport.NET最新版下载

今天我们继续讲解 FastReport .NET的更新功能,在本次更新中,我们添加了连接到 MsSQL 存储过程的功能。这些存储过程是一组同时执行的指令。因此,存储过程允许您简化复杂的操作并将它们放入单个对象中。

以前,您只能通过数据库查询连接到它们。现在使用标准方案连接数据库表就足够了。


程序图标会有所不同。此外,如果过程有输入参数,在选择过程时会出现一个带有参数的窗口。在此窗口中,您需要根据需求设置参数值。如果您使用默认值,则将表达式和值字段留空。


如果过程返回输出参数,那么它们将在创建连接后出现在“Report Parameters”中。只有当信息上传到数据源时,这些参数才会更新。

从代码调用过程:

// Create the MsSqlDataConnection object
var connection = new MsSqlDataConnection();
// Set the connection string
connection.ConnectionString = @"Data Source=DESKTOP-43LGTAI;AttachDbFilename=; Initial Catalog=EmployeeCaseStudy;Integrated Security=True;Persist Security Info=False;User ID=;Password=";
// Initialize all tables
connection.CreateAllTables();
// Set the connection name
connection.Name = "NewConnection";
// Create a Report Object
var report = new Report();
// Add the connection to a report
report.Dictionary.Connections.Add(connection);
// Enable connection display
connection.Enabled = true;
// Select a table and connect it to the report
foreach (TableDataSource table in connection.Tables)
{
 if (table.Name == "sp_GetUser") 
 {
 foreach (CommandParameter parameter in table.Parameters)
 if (parameter.Name == "@id")
 parameter.Value = 1;
 table.Enabled = true;
 }
}

通过将它们与 ProcedureDataSource 进行比较,您可以在表的列表中找到过程。

现在,FastReport .NET 用户可以更快、更轻松地在多个报表中使用预先准备好的数据选择脚本。

关于从报表控件FastReport .NET v2023.1中添加了连接到 MsSQL 存储过程功能的介绍就到这里了,接下来将继续介绍其他更新模块,请持续关注哦~

FastReport技术QQ群:536197826      欢迎进群一起讨论



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP