- Restore database.
- Change MySQL connection in
Databases.ConnectionPoolImpl
:
public ConnectionPoolImpl() {
this.driver = "com.mysql.jdbc.Driver";
this.url = "jdbc:mysql://localhost:3306/<your database's name>?allowMultiQueries=true";
this.username = "your username";
this.userpass = "your password";
this.loadDriver();
this.pool = new Stack<>();
}
- Run in
Views.MainView
.