A Survey Software that collects data, insert into a MySQL database and visualize the data(Live)
- Tkniter GUI - User interface for user to enter information
- MySQL - Database containing table to store the each data entered by a user
- Live visualization of the collected data
- Create a MySQL database named "SURVEY_DATA"
CREATE DATABASE `SURVEY_DATA`;
- Create a table in the database "SURVEY_DATA" named "RESPONSE"
create table RESPONSE (name varchar(20), day varchar(14), level int(2), department varchar(14), lecturehall varchar(15));
- open the two scripts and substitute in the connection your database host, user and password