为了账号安全,请及时绑定邮箱和手机立即绑定

当我更改页面时如何避免 crystalreport 询问数据库身份验证

当我更改页面时如何避免 crystalreport 询问数据库身份验证

C#
千巷猫影 2023-05-13 15:50:43
你好朋友我有一个问题,我有我的报告 (.rpt) 它显示良好但是当我按下按钮看到以下页面时它要求我提供参数和数据库身份验证,这是我的代码:cryRpt = new ReportDocument();try{    cryRpt.Load((Application.StartupPath + "\\rpExclu.rpt").Replace("\\bin\\Debug", ""));    cryRpt.SetParameterValue("@IDA", id);    cryRpt.SetDatabaseLogon("sa", "password$$$");    crvReportes.ReportSource = cryRpt;    crvReportes.Refresh();}catch (Exception ex){    crvReportes.Refresh();    XtraMessageBox.Show("" + ex.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);}finally{    cryRpt.Dispose();    cryRpt.Close();}我给你看截图:  提前致谢。
查看完整描述

2 回答

?
三国纷争

TA贡献1804条经验 获得超7个赞

如果您的目标是从 SQL 填充数据,则可以通过 rpt 文件设置连接,方法是在任务栏上选择Database > Database Expert > OLE DB (ADO)(如果是 MS SQL)> SQL Server Native Clinet。以这种方式建立的连接也将在评估报告时使用,因此您不需要每次都通过它。



查看完整回答
反对 回复 2023-05-13
?
临摹微笑

TA贡献1982条经验 获得超2个赞

早上好朋友们 我修改了我的代码以避免询问参数。我删除了 cryRpt.Dispose() 和 cryRpt.Close()。它有效,但我决定将这些代码行放在 winform 关闭事件中。我的代码是:


public FrmReport()

{

    InitializeComponent();

    rpDoc = new ReportDocument();

    crvReportes.AllowedExportFormats = (int)(ViewerExportFormats.ExcelFormat | ViewerExportFormats.PdfFormat| ViewerExportFormats.WordFormat);

}

private void LoadReport()

{

    try

    {

        rpDoc.Load((Application.StartupPath + "\\rpExclu.rpt").Replace("\\bin\\Debug", ""));

        rpDoc.SetParameterValue("@IDA", this.ida);

        rpDoc.SetDatabaseLogon(this.us, this.pass);

        crvReportes.ReportSource = rpDoc;

        crvReportes.Refresh();

    }

    catch (Exception ex)

    {

        crvReportes.Refresh();

        XtraMessageBox.Show("" + ex.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

    }

}

private void FrmReporteBienes_FormClosing(object sender, FormClosingEventArgs e)

{

    if (rpDoc.IsLoaded)

    {

        rpDoc.Dispose();

        rpDoc.Close();

    }

}

这是最好的解决方案吗?好吧,在这一刻它起作用了。提前致谢。


查看完整回答
反对 回复 2023-05-13
  • 2 回答
  • 0 关注
  • 133 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信