Library management project made with Java and MySQL.
The project code is written in Java which is connected to a MySQL database with JDBC.
1)Connect JDBC driver to your project
2)Download MySQl and create a database db1.
->db1 has 2 tables namely contents(has books of library) and students(has student data).
->The contents table has 3 columns namely id,author and book
->The students table has 6 columns namely roll_no, password, fname, lname, book_1, book_2.
3)Run the program from IDE.
Admin can login and view all books of library.
Admin can add new student to the database.
Student can login into his account and view books he has taken.
Student can view all the books in the library.
Student can issue/return books.
Student can take at max 2 books.