V6 - Tutorial Gantt Chart

With this tutorial you will learn to create a Gantt chart from the structure of your table in the database to generate the chart itself. In this tutorial we will use a MYSQL database for table creation.Step 1 - Creating the table:With the SQL command below will create the table and the fields used in the construction of the Gantt Chart.CREATE TABLEgantt(idINT NOT NULLAUTO_INCREMENT,tarefaVARCHAR(60),inicioDATE,fimDATE,percentualint(3),recursovarchar(20),PRIMARY KEY(id))Step 2 -…

More…