Skip to content

huynq-fouj/swing-inventory-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Demo

Sign in

Home

User List

Update User

Personal Information

Tech Stack


Get Start

  • 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 .