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
- Host: GitHub
- URL: https://github.com/sourhub226/sailor-manager-dbms-python
- Owner: sourhub226
- Created: 2021-02-23T06:19:54.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-12T15:56:13.000Z (over 4 years ago)
- Last Synced: 2025-01-15T19:34:42.543Z (about 1 year ago)
- Topics: computer-engineering, database, database-application, dbms-project, gui, mysql, python, sql, tkinter
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://www.python.org/)

# 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.
