This is a short practice project of a Java application that stores messages in a MySQL database
Requires the messages_app database using these credentials: user juan, pass admin
As an user with privileges:
- CREATE USER 'juan'@'localhost' IDENTIFIED BY 'admin';
- CREATE DATABASE messages_app;
- GRANT ALL PRIVILEGES ON messages_app.* TO 'juan'@'localhost';
- mysql -u juan -p < messages_app.sql