This is my first SQLite with C++ project. This is a C++ project that manages a student database using SQLite. It allows you to add students, view student details by ID, and view a list of all students in the database.
Before you can run this project, make sure you have the following dependencies installed:
- C++ Compiler (e.g., g++)
- SQLite3
-
Clone the repository:
git clone https://github.com/vickvey/Basic-Student-Record-System.git
-
Navigate to project directory:
cd Basic-Student-Record-System
-
Make the project:
make
this will generate an executable file 'myprogram'
- To run the program, execute the following program:
./myprogram
- Follow the on screen instructions to interact with the database.
The SQLite database used in this project has the following structure:
- Table: students
- ID (INTEGER PRIMARY KEY AUTOINCREMENT): Student ID
- FIRST_NAME (TEXT NOT NULL): Student's first name
- LAST_NAME (TEXT NOT NULL): Student's last name
Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch.
- Make your changes.
- Test your changes.
- Create a pull request.
This mini-Project has an MIT LICENSE. View LICENSE file for more info. This mini-Project has been written by github user : vickvey