Calculating... until our next FREE Code-Along Session. Secure your spot now

How To Generate A MySQL PDF Report in 3 Steps

Avatar photo
Dominik Keller
Oct 5th, 2023
Blog

Learn How to Generate a PDF Report On a MySQL Database

Go from MySQL database to PDF report in just three steps: follow this tutorial to (1) create a database, (2) design a dynamic PDF report, and (3) publish your PDF report to the web.

For this tutorial, we use Five, an application development environment, that gives you a built-in MySQL database and a PDF reports generator. Make sure to sign up for free to follow along.



Using Five to Generate PDF Data Reports on MySQL

Generating a PDF report from data stored in a MySQL database is a common development task. Traditional SQL admin tools or GUIs, however, do not support PDF report generation.

Five is a rapid application development environment that supports database creation, SQL queries, and PDF report generation (as well as many other useful features to build a web app such as forms, charts, dashboards, etc.).

Let’s explore how we can go from database to PDF reports in a few simple steps.

Here’s a simple scenario: your business needs a new monthly inventory report (yet again). Let’s check out how quickly we can build this in Five.


1. Creating the MySQL Database

First up, Five gives developers a dedicated MySQL database. This built-in MySQL can be created using Five’s Table Wizard or its visual Database Modeler.

We will generate our report on top of this integrated MySQL database. Of course, a report can also be generated on any external, pre-existing relational database.

Here’s what our database looks like for this example: we have a single table that stores information about Warehouses.

Five.Co - Visual MySQL Database Modeler

To create this database, follow these steps:

  1. Sign up for Five for free.
  2. Login to Five and create a new application by clicking on Applications, and then on the yellow Plus button.
  3. Give your application a Title, and click on the Tick mark in the top right corner to save your first app.
  4. Now click on the blue Manage button in the top right corner.
  5. Next, click on Data > Table Wizard.

If you are struggling with any of these steps, watch this tutorial:


2. Creating the PDF Report on a SQL Database

Next, click on Visual > Reports.

You can now generate, adjust, customize, and manage MySQL PDF reports. Five lets you create reports on any data source, including its built-in MySQL database, any SQL query, or any external database connected to Five.

Five.Co - Visual > Reports

Inside Reports,

  1. Click the yellow Plus icon to generate a new report.
  2. Give your report a Title, such as Warehouse Report.
  3. Click on Data Sources, and select the Warehouse Table.
  4. Go back to General, and click on Click to add in the Template field.

You’re now inside a rich text editor that allows you to design PDF reports the same way you would design a Word document. On top of the text and document design features, the report generator also lets you select any data field from your database or data source.

For example, you can add a table to a report that contains each field that is stored inside the warehouse table. To do so,

  1. Add a table to the rich text editor by clicking the Table icon. Choose a 3 x 2 table, because the warehouse table only has two data fields: Location and ID.
  2. Next, open up the Insert Fields functionality shown here:
Five.Co - Inserting Fields from MySQL to the Report

You can use the Insert Fields functionality to add your database captions and records into the PDF document. Here’s how to set this up:

Five.Co - Inserting Fields from MySQL to the Report Layout

Let’s understand what we are doing here:

  1. We are using one of Five’s helper functions: the built-in each function, which tells Five to get each record stored in the database.
  2. At the bottom, we choose the fields that we would like to include in our report. In our case, we’re choosing our Warehouse SQL table as the data source, and we pick the records of our location and ID fields.

If you don’t enjoy working with the rich text editor, you can design your PDF report in HTML. To understand how this works, copy this piece of HTML into the code view of the report generator.

Open the code view by clicking on </> in the top left corner of the report generator.

<div><strong>Warehouse Report</strong></div>
<div><strong><br></strong></div>
<div><strong><br></strong></div>
<table style="width: 100%;">
    <tbody>
        <tr>
            <td>Location</td>
            <td>ID</td>
        </tr>
        <tr class="fiveReportHelper" contenteditable="false">
            <td class="fiveReportHelper">{{#each @root.[Warehouse].[Records] as | Warehouse |}}</td>
        </tr>
        <tr>
            <td>{{Warehouse.[Location]}}</td>
            <td>{{Warehouse.[ID]}}</td>
        </tr>
        <tr>
            <td>{{/each}}</td>
            <td><br></td>
        </tr>
    </tbody>
</table>
<div><strong><br></strong></div>
<div><strong><br></strong></div>

Save everything by clicking the Tick marks.

IMPORTANT: Don’t forget to add your report to the menu of your application.

  1. Click on Visual > Menus > Yellow Plus Icon
  2. Fill in the Caption of your menu item with Warehouse Report.
  3. Select the WarehouseReport (Report) in the Action drop-down field.
  4. Save.

3. Preview your PDF Report

To preview your PDF report that now turns the data stored in your MySQL database into an easy-to-use, printable, and shareable PDF document, launch your application by clicking the ▶️ button in the top right corner of your development environment.

After a few seconds, the application will launch, and you’ll see your PDF report right in front of you!

You might be wondering why this report is empty. Well, we didn’t add any data to our database table.

But of course, we could have done so by importing a CSV, or by creating a form in our application for users to add data. You can quickly add a form to your app using Five’s Form Wizard, which can be found inside the development environment by clicking on Visual > Form Wizard.

Five.Co - Previewing the MySQL Report

Last, we could have worked on the formatting of our SQL report (and the look of the application surrounding it) by using the rich text editor or by customizing Five’s application themes.


4. Generating More Complex PDF Reports on a SQL Database

The above report turns existing MySQL database records into a table shown on a PDF document. This is the easiest example of an SQL report. What if you need more complex reports?

Five lets you add code to your report to manipulate data or add logic to your template. You could, for example, add a calculated field (such as a monthly total).

Moreover, you can add custom screen fields to a report. A screen field lets users add data to their report from inside the end-user application rather than the database. In this way, the end-user of your report can make adjustments inside the report before generating it.


Generate PDF from a MySQL Database – Webinar

Watch our Developer Advocate Pranoy explain the PDF report generator in more detail in our full product demo here (to jump straight to the SQL report writer start watching from 21m and 40s):


Generate a PDF Report on a MySQL Database: Getting Started

Sign up and get started with Five at no cost.


Sign Up Today
Create a PDF Report on a SQL Database




Start developing your first application!

Get Started For Free Today

Sign Up Free Book a demo
Develop your first application with Five now. Start Free

Thank you for your message!

Our friendly staff will contact you shortly.

CLOSE