如何修复用户访问被拒绝'' ***' (使用密码:否)问题

时间:2015-03-27 06:26:05

标签: mysql asp.net web

        DataSet1 ds = new DataSet1();

        Conn = new MySqlConnection();
        //    Conn.Open();


       MySqlDataAdapter da = new MySqlDataAdapter("sp_rpt_Show_User_Details", Conn);

        da.SelectCommand.CommandType = CommandType.StoredProcedure;
        ReportDocument myrpt = new ReportDocument();
        da.Fill(ds.agenthistorycumulative);


        myrpt.Load(Server.MapPath("~/CrystalReport2.rpt"));
        CrystalReport2 c = new CrystalReport2();
        c.SetDataSource(ds);
        CrystalReportViewer1.ReportSource = c;

如果我评论da.fill方法..此时显示报告但没有显示数据..只有表字段名称...如果我取消注释da.fill()方法然后将身份验证提供给主机&#39 ;'对于用户'' ... ...味精 即时通讯不是100%确定我的代码是正确的...但我通过查询而不是存储过程..它运行良好...

       help me

0 个答案:

没有答案