You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Library Management System
This version upgrades the UI to a Glassmorphism-style look (translucent cards, gradients, rounded corners).
Functionality is the same as the previous project (Books, Students, Issue/Return, Fine calc).
## Quick setup & run (Windows / CMD)
1. Create DB: `mysql -u root -p < sql/library_schema.sql`
2. Place MySQL Connector JAR in `lib/` (e.g. mysql-connector-j-9.0.0.jar)
3. Edit DB credentials in: `src/com/library/util/DBConnection.java`
4. Compile (Windows):
`javac -cp "lib/mysql-connector-j-9.0.0.jar;." -d out src\com\library\**\*.java`
or use the for-loop:
`for /r %f in (*.java) do javac -cp "lib/mysql-connector-j-9.0.0.jar;." -d out "%f"`
5. Run:
`java -cp "out;lib/mysql-connector-j-9.0.0.jar" com.library.Main`