Você está na página 1de 11

K.L.

E Societys
B.V.BHOOMARADDI COLLEGE OF ENGG. & TECH.
HUBLI-580031

DEPARTMENT

OF

INSTRUMENTATION TECHNOLOGY
Course activity
On
Implementation Assignment
Submitted By
Sahana.M

( 2BV14IT421)

Sanjota.M

( 2BV14IT425)

Rakhi. K

( 2BV14IT417)

Under the guidance of


Prof. Vishal . P
Signature
Guide:
___________

1. Course Activity: Creating a Database to carry out the operation based on programs.
2. Problem Statement: Create a database and write programs to carryout following operations:
Add a record in Database

Delete a data in Database

Modify

Generate queries

List all the records of Database in ascending order.

3. Abstract: To create a blood bank management system that makes a healthy


transaction between hospital, blood bank and donor. Using blood bank system
operations we can easily find the donors address and need of blood to who are
in the emergency condition.
4. Requirements:
1. Details about the functionality expected by the users from the application.
2. Details about every blood bank.
3. Details about the donor, receiver and stock available.
5. Details about operations:
*Add a record in database: To enter data accurately and quickly in an Access database, it helps to
understand a few of the basics about how a database works.
*Delete a record in Database: Deleting inaccurate or obsolete data can make your database faster
and easier to use.
*Modify: Modifying a data in database helps to reduce overall memory usage and inaccurate in
programs.
*Generate queries: To create a query we need to find the table or view from which you need to
retrieve the data. Specify any additional criteria for extracting records from the tables or views.
*List all records of database in ascending order: Listing the records which present the database
with ascending order will help you to retrieve a correct data with ordered method

Department Of Instrumentation Technology

ER diagram:

Schema Diagram:

Department Of Instrumentation Technology

Object modeling:

Programme:
create table DONAR(
NAME varchar2(50) ,
D_ID varchar2(25)primary key,

Department Of Instrumentation Technology

PHONE_NO int,
ADDRESS varchar2(45),
WEIGHT int,
AGE int,
GENDER varchar2(45),
BLOOD_GROUP varchar2(45),
);
insert into DONAR values('Shweta','D_100',9902417149,'gdg',55,25,'FEMALE','O+');
insert into DONAR values('Rakhi','D_101',9902417149,'BGK',50,22,'FEMALE','A+');
SELECT NAME,AGE
FROM DONAR
ORDER BY AGE ASC;

DROP TABLE DONAR;

RESULTS

Department Of Instrumentation Technology

Department Of Instrumentation Technology

Department Of Instrumentation Technology

Department Of Instrumentation Technology

Department Of Instrumentation Technology

Department Of Instrumentation Technology

10

Department Of Instrumentation Technology

11

Você também pode gostar