0% found this document useful (0 votes)
35 views1 page

Data Design 1 Internal Software Data Structure

1. The system uses an ArrayList as an internal data structure to generate and store QR codes for each patient registration based on their registration details and disease information. ArrayLists provide dynamic arrays and manipulation capabilities needed for this application. 2. A HashMap global data structure is used to store patient values based on unique keys generated for each patient. 3. MySQL is an open source SQL database management system developed and supported by Oracle Corporation. It provides structured data storage and a way to add, access, and process large amounts of stored data for applications.

Uploaded by

Vinod Thete
Copyright
© © All Rights Reserved
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)
35 views1 page

Data Design 1 Internal Software Data Structure

1. The system uses an ArrayList as an internal data structure to generate and store QR codes for each patient registration based on their registration details and disease information. ArrayLists provide dynamic arrays and manipulation capabilities needed for this application. 2. A HashMap global data structure is used to store patient values based on unique keys generated for each patient. 3. MySQL is an open source SQL database management system developed and supported by Oracle Corporation. It provides structured data storage and a way to add, access, and process large amounts of stored data for applications.

Uploaded by

Vinod Thete
Copyright
© © All Rights Reserved
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/ 1

DATA DESIGN

1 Internal software data structure


The system internally to generate QR code for every patient registration as per their registration
and disease details. So to handle this manipulation we need to use ”Arraylist”. ArrayList is a part
of collection framework and is present in java.util package.
It provides us dynamic arrays in Java. Though, it may be slower than standard arrays but can be
helpful in programs where lots of manipulation in the array is needed.

2 Global data structure


We have the data structure in the Java HashMap class which stores the values based on the
unique key and this unique key is generated for every patient.

3 Database descriptions
MySQL: MySQL, the most popular Open Source SQL database management system, is
developed, distributed, and supported by Oracle Corporation. The MySQL Web site
(http:www.mysql.com) provides the latest information about MySQL software.

MySQL is a database management system.


A database is a structured collection of data. It may be anything from a simple shopping list to a
picture gallery or the vast amounts of information in a corporate network. To add, access, and
process data stored in a computer database, you need a database management system such as
MySQL Server. Since computers are very good at handling large amounts of data, database
management systems play a central role in computing, as standalone utilities, or as parts of other
applications.

You might also like