简体   繁体   中英

Crystal repeort and error Database Vendor Code: 17

I have problem with run my report on Windows 10.

My code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CrystalDecisions.Shared;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions;//.Windows.Forms;
using System.Drawing;
using CrystalDecisions.CrystalReports;


      [STAThread]
        static void Main(string[] args)
        {
            try
            {

                System.Threading.Thread.CurrentThread.SetApartmentState(System.Threading.ApartmentState.STA);
            }

            catch (Exception ex)

            {
                Console.WriteLine(ex.ToString());
            }


            ReportDocument report;
            try
            {

                int id = Int32.Parse(args[0]);
                report = new ReportDocument();
                report.Load(ConfigurationService.GetConfig().Localistaion);

                report.SetDatabaseLogon(ConfigurationService.GetConfig().User, ConfigurationService.GetConfig().Password, ConfigurationService.GetConfig().ServerName, ConfigurationService.GetConfig().Database);
                report.SetParameterValue("pInvoiceHeader_Id", id);

                report.PrintToPrinter(2, false, 1, 5);
                Console.ReadKey();

            }
            catch (Exception ex) { Console.WriteLine("{0}: ", ex.ToString()); Console.ReadKey(); }
        }

Failed to open the connection.s.Engine.InternalException: Invoice 6172_11120_{DE173B3A-EEC6-41EF-937D-75576F6BEDCA}.rpt Failed to open the connection.e: 17 ] ---> System.Runtime.InteropServices.COMException: Invoice 6172_11120_{DE173B3A-EEC6-41EF-937D-75576F6BEDCA}.rpt Details: [Database Vendor Code: 17 ] at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetLastPageNumber(RequestContext pRequestContext) at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext) --- End of inner exception stack trace --- at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) at CrystalDecisions.ReportSource.EromReportSourceBase.HandleException(Exception exception) at CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(Int32 nCopies, Boolean collated, Int32 startPageN, Int32 endPageN ) at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(Int32 nCopies, Boolean collated, Int32 startPageN, Int32 endPageN) at Prnt2.Program.Main(String[] args):

wait answear:: database vendor code : 17 failed to open the connection. temp_51c8028b-63ae-4583-b67e-432994f29f554132_3340

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM