Please, how do I create a database application for a hostel to manage their records? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Please, how do I create a database application for a hostel to manage their records?

14th Jul 2023, 8:25 AM
DARKO EMMANUEL
DARKO EMMANUEL - avatar
8 Answers
+ 6
Google it
14th Jul 2023, 8:55 AM
Sakshi
Sakshi - avatar
+ 6
Here are many examples in different programming languages and technologies from beginner to advanced projects: https://github.com/topics/hostel-management-system
14th Jul 2023, 4:18 PM
JaScript
JaScript - avatar
+ 4
Step 1 - Requirement Analysis - What will be the purpose of the application? - What will be the different features? - What is the structure of the data you want to manage? - Who will be the users, how will they separate responsibilities? - What will be the technological platform (desktop/mobile/web app, which OS...) Step 2 - Design - Pick a programming language - Pick a database engine - Optionally pick an application framework - Plan the architecture and sketch the different components of the application Step 3 - Build - Write the code! - Use version control - Optionally use TDD (test driven development) or at least write unit tests Step 4 - Test - Validate the functional requirements, together with the user - End-to-end tests, integration tests (if any) Step 5 - Deploy - Install the application, or client/server - Go live - Fix bugs
14th Jul 2023, 8:55 AM
Tibor Santa
Tibor Santa - avatar
+ 3
Can you please help me with it
14th Jul 2023, 9:01 AM
DARKO EMMANUEL
DARKO EMMANUEL - avatar
+ 3
EMMANUEL DARKO Please describe your recent experience in programming. Which programming- and markup-languages do you already know? What's your knowledge level in each of them? (beginner, intermediate, advanced, expert).
14th Jul 2023, 9:19 AM
Jan Markus
+ 3
EMMANUEL DARKO Then it would be the best to talk to your peer students or pupils and develop ideas together with them. Then you can discuss it during the lessons with your lecturer. Additionally you can do research on the internet.
14th Jul 2023, 4:11 PM
Jan Markus
+ 2
I'm just a beginner, and our lecturer has given as a project to create a database for a hostel for them to manage their tenants
14th Jul 2023, 10:53 AM
DARKO EMMANUEL
DARKO EMMANUEL - avatar
+ 2
Steps of Creating Database using python: 1. Importing The mysql.connector module for stablish the connection between Database using 'mysql.connector.connect()' or requires the 'host', 'user', 'password' and 'database' 2. Defining function for creating table using 'create_table()' here you provide your column name which you want in Database. Create another function for insert the data in table using 'insert_record(). This function insert the new record in table. Like that you make update function and delete function. At the you need you break the connection using db.close()
15th Jul 2023, 3:21 AM
Vaibhav
Vaibhav - avatar