0% found this document useful (0 votes)
56 views4 pages

Level 0: Member/User Library Management System General Reports

This document describes a library management system with three levels and provides details on database design. The system allows for member registration and processing, viewing and issuing books. It also allows for returning books and generating reports. The database design includes three tables - one for book information, one for books in the library, and one for issuing books. The tables store information like book IDs, titles, authors, issue dates, due dates, and more.

Uploaded by

manjuashok
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views4 pages

Level 0: Member/User Library Management System General Reports

This document describes a library management system with three levels and provides details on database design. The system allows for member registration and processing, viewing and issuing books. It also allows for returning books and generating reports. The database design includes three tables - one for book information, one for books in the library, and one for issuing books. The tables store information like book IDs, titles, authors, issue dates, due dates, and more.

Uploaded by

manjuashok
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

LEVEL 0 Member/User Library Management System General Reports

LEVEL 1

Library Management Storing Member Registration Processing Book List

Reg_Db

View List of Books

LEVEL 2 Member/ User Login Processing Ordering


Processing

View of Books

Issue Books

Books_DB

IssueBook

Books Report

Issue Book Report

Updating Returning of Books

BookRet urn Book Return Report

Database Design

TABLE DESIGN: 1) insertbook Primary Key : BookID


BOOKID TITLE AUTHOR YEARPUBLISHED CATEGORY PUBLISHER EDITION COST DATEOFENTRY LIBRARYCOPY STATUS CONDITION INT, VARCHAR(150), VARCHAR(100), VARCHAR(20), VARCHAR(100), VARCHAR(100), VARCHAR(50), VARCHAR(20), DATETIME, INT, VARCHAR(20), VARCHAR(20)

2) librarybooks Foreign Key : BookID


BOOKID TITLE AUTHOR YEARPUBLISHED CATEGORY PUBLISHER EDITION COST DATEOFENTRY INT NULL, VARCHAR(150) NULL, VARCHAR(100) NULL, VARCHAR(20) NULL, VARCHAR(100) NULL, VARCHAR(100) NULL, VARCHAR(50) NULL, VARCHAR(20) NULL, DATETIME NULL,

LIBRARYCOPY STATUS CONDITION

INT NULL, VARCHAR(20) NULL, VARCHAR(20) NULL

3) issuebook
Primary Key : TrnsID
TRNSID ROLLNUMBER NAME AGE GENDER BRANCH YEAR BARTYPE BOOKID TITLE AUTHOR CATEGORY EDITION PUBLISHER LIBRARYCOPY ISSUEDATE DUEBACKBY INT NULL, INT NULL, VARCHAR(150) NULL, INT NULL, VARCHAR(10) NULL, VARCHAR(10) NULL, INT NULL, VARCHAR(15) NULL, INT NULL, VARCHAR(150) NULL, VARCHAR(150) NULL, VARCHAR(100) NULL, VARCHAR(20) NULL, VARCHAR(50) NULL, INT NULL, DATETIME NULL, DATETIME NULL

You might also like