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

https://github.com/sourhub226/sailor-manager-dbms-python

MySQL Sailor Manager DBMS implementation in Python
https://github.com/sourhub226/sailor-manager-dbms-python

computer-engineering database database-application dbms-project gui mysql python sql tkinter

Last synced: 12 months ago
JSON representation

MySQL Sailor Manager DBMS implementation in Python

Awesome Lists containing this project

README

          

[![made-with-python](https://img.shields.io/static/v1?label=Made%20with&message=Python&logo=python&labelColor=FFD745&color=3475A7)](https://www.python.org/)
![ViewCount](https://views.whatilearened.today/views/github/sourhub226/sailor-manager-dbms-python.svg)

# Sailor Manager - MySQL DBMS implementation in Python.

A simple database application for the following schema

`SAILOR (SID,SNAME,RATING,AGE)`

Sailor relation includes a list of registered sailors. `SID` is the primary key.

### Application features:
- Allows user to insert details of sailors into the database.
- Allows user to display data of all sailors.
- Allows user to delete data of one sailor based on SID.
- Allows user to update data in sailor relation.

### Implementation:
- The database application is implemented using python.
- The GUI has been made using `Tkinter` module packaged with python.
- The module [`pymysql`](https://pypi.org/project/PyMySQL) is used to connect the application with mysql server.


![GUI](preview.png)