{"id":15003106,"url":"https://github.com/softcodenet/studentmanagementsystem","last_synced_at":"2025-10-30T09:31:22.263Z","repository":{"id":229360046,"uuid":"776536680","full_name":"softcodenet/StudentManagementSystem","owner":"softcodenet","description":"The Student Management System is a desktop application developed on .NET C#, designed to efficiently handle CRUD operations through a console-based interface.","archived":false,"fork":false,"pushed_at":"2024-03-23T19:25:52.000Z","size":12,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-02T07:51:13.832Z","etag":null,"topics":["console","console-application","csharp","csharp-project","database-management","dbms","dotnet","dotnet-core","dotnet-project","dotnet-sdk","microsoft-data-sqlclient","microsoft-sql-server"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/softcodenet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-03-23T19:25:10.000Z","updated_at":"2024-10-20T23:42:40.000Z","dependencies_parsed_at":"2024-03-23T20:23:26.117Z","dependency_job_id":"1d940d4a-3093-4990-92ce-5f97e3d777c4","html_url":"https://github.com/softcodenet/StudentManagementSystem","commit_stats":null,"previous_names":["radomangutic/studentmanagementsystem","softcodenet/studentmanagementsystem"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softcodenet%2FStudentManagementSystem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softcodenet%2FStudentManagementSystem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softcodenet%2FStudentManagementSystem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softcodenet%2FStudentManagementSystem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/softcodenet","download_url":"https://codeload.github.com/softcodenet/StudentManagementSystem/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238950485,"owners_count":19557533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["console","console-application","csharp","csharp-project","database-management","dbms","dotnet","dotnet-core","dotnet-project","dotnet-sdk","microsoft-data-sqlclient","microsoft-sql-server"],"created_at":"2024-09-24T18:56:07.939Z","updated_at":"2025-10-30T09:31:16.902Z","avatar_url":"https://github.com/softcodenet.png","language":"C#","readme":"\u003ch1 align=\"center\"\u003eStudent Management System\u003c/h1\u003e\n\u003ch4 align=\"center\"\u003eA simple console based DBMS project to handle \u003cstrong\u003eCRUD\u003c/strong\u003e operations.\u003c/h4\u003e\n\n\n## About\n\nThis is a console-based Student Management System, which is a simple application designed to manage student records, including creating, updating, and deleting student information. Additionally, it allows for the assignment of courses to students, inserting student marks, calculating GPA, and viewing available courses and departments.\n\n### Key functionalities of this Student Management System include:\n\n1. **Create Student**: Users can input a student's ID, first name, last name, date of birth, and department ID to create a new student record in the database.\n\n2. **Show Students**: This function retrieves and displays a list of all students stored in the database, including their basic information like name, date of birth, and department ID.\n\n3. **Update Student**: Users can update the information of an existing student by providing their ID and modifying their first name, last name, date of birth, and department ID.\n\n4. **Delete Student**: Allows the removal of a student record by specifying the student's ID.\n\n5. **Add Course to Student**: This feature allows users to assign courses to students by selecting a student's ID and a course ID from a list of available courses.\n\n6. **Insert Marks and Calculate GPA**: Users can enter marks for a student in a specific course, and the system will automatically calculate the GPA based on the provided marks.\n\n7. **Search Student**: This function allows users to search for a specific student by their ID and displays detailed information about the student, including the courses they are enrolled in and their corresponding grades.\n\n8. **View Courses and Departments**: Users can view a list of available courses and departments, and they can also insert new courses and departments.\n\nThe code interacts with a SQL Server database using SQL commands for data retrieval, insertion, updating, and deletion. It includes error handling to provide feedback on the success or failure of database operations.\n\nOverall, this Student Management System serves as a basic tool for managing student information and academic records, making it useful for educational institutions or organizations that require a straightforward means of handling student data. Further improvements could include enhanced user interface features and additional functionalities like grade reporting, student enrollment management, and data analytics.\n\n## Dependencies\n\n- C#\n- .NET SDK (7.0.403)\n- Microsoft SQL Server (SQL Express 2022)\n- Microsoft Data.SqlClient (5.1.2)\n\n\n## How to use\n\n1. Clone the repository\n2. Create Database _or_ Import Database from backup\n3. Open the project in Visual Studio Code\n4. Install C# Dev Kit\n5. Run the project\n\n\u003e[!Note]\n\u003eYou can also use Visual Studio _or_ your favorite IDE to run this project.\n\n## Error Handling\n\n- Be patient. Wait for all packages to be restored.  \n  All packages will be restored in the project root folder.\n- **Microsoft.Data.SqlClient** _error_  \n  If packages are not restored automatically, then run `dotnet restore` _or_\n  Download the `Microsoft.Data.SqlClient` package from `https://www.nuget.org/packages/Microsoft.Data.SqlClient` _or_ from the `terminal`, run `dotnet add package Microsoft.Data.SqlClient`.\n- **SQL Server** _error_\n  - Check your SQL Server connection.\n  - Configure your SQL Server connection.\n    ```text\n    localhost ip-----OR----enable any existing ip from SQL\n    Server (2022) Configuration manager\\SQL Server Network\n    Configuration\\protocols For SQLEXPRESS(instance name)\\\n    TCP/IP\\properties\\protocol(enabled)\\IP Address\n    ```\n    ```text\n    port = \"51609\"; // The port, configured in SQL Server Configuration Manager\n    ```\n    _OR_\n    Change `connectionString` in `Program.cs` file.  \n\n    ```cs\n    // connectionString = \"Data Source=InstanceName;Initial Catalog=StudentManagementSystem;Integrated Security=True;Encrypt=False\";\n    \n    // Database connection string\n    static string connectionString = \"Data Source=localhost,51609;Initial Catalog=StudentManagementSystem;Integrated Security=True;Encrypt=False\";\n    ```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftcodenet%2Fstudentmanagementsystem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoftcodenet%2Fstudentmanagementsystem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftcodenet%2Fstudentmanagementsystem/lists"}