从一个选择查询中获取多个结果

本文关键字:获取 结果 查询 一个 选择 | 更新日期: 2023-09-27 17:56:34

所以我被困在我的代码上,并彻底尝试寻找答案。

我有 1 个选择语句,带来大约 52806 个结果。

我将运行的查询结果放在变量中,然后将其放入我制作的PDF文件中。在第一个结果之后,它不起作用。我想这样做,以便它将结果放在我的 pdf 文件中,然后转到下一个结果。

如果有人能帮我,我非常感谢。

这是我的代码。很抱歉提前的不良做法。

    private void CreateBtn_Click(object sender, EventArgs e)
    {
        try
        {
            make_pdf();
        }
        catch (Exception exe )
        {
            MessageBox.Show("failed");
        }
    }
    public static void make_pdf()
        {
        string Contact = "";
        string emailAddress = "";
        string Tel = "";
        string InvoiceDate = "";
        string address = "";
        string Reference = "";
        string AccountNo = "";
        string Debit = "";
        string Credit = "";
        string refnum = "";


        string connetionString = null;
        MySqlConnection cnn;
        connetionString = "server=********;user id=web_support;database=users;password=!w3b_supp0rt~;persistsecurityinfo=True";
        cnn = new MySqlConnection(connetionString);
        try
        {
            cnn.Open();
           // MessageBox.Show("Connection Open ! ");
        }
        catch (Exception ex)
        {
            MessageBox.Show("Can not open connection ! ");
        }

        try
        {
            MySqlDataReader reader = null;
            string selectCmd = "SELECT accounting.code,users.curr_email , users.physicaddr ,accounting.date , accounting.refnum , users.telephone , accounting.debit , accounting.acc_pdf, accounting.credit, accounting.reference, users.contact, accounting.transnum FROM accounting INNER JOIN users ON accounting.code = users.code WHERE(accounting.transtype = 1)";
            MySqlCommand command = new MySqlCommand(selectCmd, cnn);
            reader = command.ExecuteReader();
            while (reader.Read())
            {
                if (reader.HasRows)
                {
                    //get account number
                    AccountNo = reader["code"].ToString();
                    //get emailaddress
                    emailAddress = reader["curr_email"].ToString();
                    //get Contact Name
                    Contact = reader["contact"].ToString();
                    //get telephone number
                    Tel = reader["telephone"].ToString();
                    //Get Date
                    InvoiceDate = reader["date"].ToString();
                    //Get reference
                    Reference = reader["reference"].ToString();
                    //Get Address
                    address = reader["physicaddr"].ToString();
                    //Get Debit
                    Debit = reader["debit"].ToString();
                    //Get Credit
                    Credit = reader["credit"].ToString();
                    //Get Refnum
                    refnum = reader["refnum"].ToString();

                    //  MessageBox.Show(address+" "+Reference+" "+InvoiceDate+" "+emailAddress+" "+AccountNo+" "+Contact);

                    // Make The PDF File
                    Document NewDoc = new Document(iTextSharp.text.PageSize.A4, 0, 0, 0, 0);
                    PdfWriter pdfwri = PdfWriter.GetInstance(NewDoc, new FileStream("text.pdf", FileMode.Create));
                    NewDoc.Open();
                    iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("intsa_header_small.jpg");
                    // Paragraph par = new Paragraph("Everything is working");
                    //Account List
                    List AccountNolist = new List(List.UNORDERED);
                    AccountNolist.SetListSymbol("");
                    AccountNolist.IndentationLeft = 300f;
                    AccountNolist.Add(new ListItem("AccountNo   " + AccountNo));
                    // AddressList
                    List AddressList = new List(List.UNORDERED);
                    AddressList.SetListSymbol("");
                    AddressList.IndentationLeft = 300f;
                    AddressList.Add(new ListItem("Address:  " + address));
                    #region Emailaddresslist
                    //EmailAddressList
                    List emailAddresslist = new List(List.UNORDERED);
                    emailAddresslist.SetListSymbol("");
                    emailAddresslist.IndentationLeft = 300f;
                    emailAddresslist.Add(new ListItem("Email address:  " + emailAddress));
                    #endregion
                    //ContactList
                    List Contactlist = new List(List.UNORDERED);
                    Contactlist.SetListSymbol("");
                    Contactlist.IndentationLeft = 300f;
                    Contactlist.Add(new ListItem("Contact:  " + Contact));
                    //TelephoneList
                    List Telephonelist = new List(List.UNORDERED);
                    Telephonelist.SetListSymbol("");
                    Telephonelist.IndentationLeft = 300f;
                    Telephonelist.Add(new ListItem("Tel:  " + Tel));
                    // Make a Table

                    PdfPTable General_Table = new PdfPTable(1);
                    General_Table.SpacingBefore = 50f;
                    General_Table.SpacingAfter = 50f;
                    PdfPCell Caption = new PdfPCell(new Phrase("Description"));
                    PdfPCell Body = new PdfPCell(new Phrase("       " + refnum + "    " + Reference + "   Debit: " + Debit + "   Credit: " + Credit));
                    Body.HorizontalAlignment = Element.ALIGN_RIGHT;
                    Caption.Colspan = 0;
                    Caption.HorizontalAlignment = 1;
                    General_Table.AddCell(Caption);
                    General_Table.AddCell(Body);

                    // NewDoc.Add(par);
                    //add Image to pdf
                    NewDoc.Add(img);
                    //add accountNo to pdf
                    NewDoc.Add(AccountNolist);
                    //add Contact to pdf
                    NewDoc.Add(Contactlist);
                    //add emailaddress to pdf
                    NewDoc.Add(emailAddresslist);
                    //add Telephone Number to pdf
                    NewDoc.Add(Telephonelist);
                    //add address to pdf
                    NewDoc.Add(AddressList);
                    NewDoc.Add(General_Table);
                    //save Pdf
                    NewDoc.Close();


                }
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }

从一个选择查询中获取多个结果

问题是您正在 while 循环中创建 PDF 文件,我认为您不需要 52k PDF 文件,因此您应该先创建 PDF 文件,然后循环遍历所有结果并将它们粘贴到文件中。

编辑:我建议添加行以在之后将PDF插入/更新到数据库

NewDoc.Close();

然后在再次运行循环之前删除本地文件(文本.pdf)。