An open API service indexing awesome lists of open source software.

https://github.com/sahilbansal17/library-management-system

Library Management System at IIT Jammu. Done as the part of assignment of Database Management System course.
https://github.com/sahilbansal17/library-management-system

Last synced: 3 months ago
JSON representation

Library Management System at IIT Jammu. Done as the part of assignment of Database Management System course.

Awesome Lists containing this project

README

          

# Library-Management-System at IIT Jammu

## Script to create database
$ sudo chmod 777 initialize
$ ./initialize

This will automatically perform the next two steps mentioned below.

### 1. Creating the database
$ sudo mysql < db/sql_commands.sql

This will create the database **lms** and all the tables with constraints associated.

### 2. Generating random data
$ pip3 install -r requirements.txt
$ python3 db/generate_data.py

### 3. Running the queries
$ python3 db/queries.py

### 4. Documentation
The documentation is available in the [doc/](doc/) folder.