{"id":27645913,"url":"https://github.com/utilforever/2025-matkor-make-sqlite","last_synced_at":"2025-11-03T18:09:13.078Z","repository":{"id":280494448,"uuid":"942076038","full_name":"utilForever/2025-MatKor-Make-SQLite","owner":"utilForever","description":"2025년 고려대학교 MatKor 스터디 - C++로 SQLIte 만들기","archived":false,"fork":false,"pushed_at":"2025-06-07T05:39:06.000Z","size":4342,"stargazers_count":18,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T04:54:39.505Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utilForever.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-03T14:34:00.000Z","updated_at":"2025-09-02T11:41:07.000Z","dependencies_parsed_at":"2025-03-03T18:49:37.433Z","dependency_job_id":"b4ebfae0-bd9d-41f6-82dd-a88b2aa45d04","html_url":"https://github.com/utilForever/2025-MatKor-Make-SQLite","commit_stats":null,"previous_names":["utilforever/2025-matkor-make-sqlite"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/utilForever/2025-MatKor-Make-SQLite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilForever%2F2025-MatKor-Make-SQLite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilForever%2F2025-MatKor-Make-SQLite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilForever%2F2025-MatKor-Make-SQLite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilForever%2F2025-MatKor-Make-SQLite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utilForever","download_url":"https://codeload.github.com/utilForever/2025-MatKor-Make-SQLite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilForever%2F2025-MatKor-Make-SQLite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278556187,"owners_count":26006079,"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","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-04-24T01:13:50.305Z","updated_at":"2025-10-06T03:46:36.371Z","avatar_url":"https://github.com/utilForever.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 2025-MatKor-Make-SQLite\n\n2025-MatKor-Make-SQLite is the material(lecture notes, examples and assignments) repository for making a simple SQLite using C++ that I'll teach the club 'MatKor' at Korea University in 2025 Spring.\n\n## Contents\n\n- Week 0 (3/27) [[Lecture]](./1%20-%20Lecture/250327%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%200.pdf)\n  - Introduction\n- Week 1 (5/8) [[Example code]](./2%20-%20Code/250508%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%201/)\n  - Make a simple SQLite using C++, Part 1\n    - Print page size\n    - Print number of tables\n- Week 2 (5/15) [[Example code]](./2%20-%20Code/250515%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%202/) [[Assignment]](./3%20-%20Assignment/250515%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%202/) [[Solution]](./4%20-%20Solution/250515%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%202/)\n  - Make a simple SQLite using C++, Part 2\n    - Print table names\n    - Assignment #1\n      - Count rows in a table\n- Week 3 (5/22)\n  - No Lecture (IPSELENTI)\n- Week 4 (5/29) [[Example code]](./2%20-%20Code/250529%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%204/) [[Assignment]](./3%20-%20Assignment/250529%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%204/) [[Solution]](./4%20-%20Solution/250529%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%204/)\n  - Make a simple SQLite using C++, Part 3\n    - Read data from a single column\n    - Assignment #2\n      - Read data from multiple columns\n      - Filter data with a WHERE clause\n- Week 5 (6/5) [[Example code]](./2%20-%20Code/250605%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%205/) [[Assignment]](./3%20-%20Assignment/250605%20-%20Make%20a%20Simple%20SQLite%20using%20C++,%20Week%205/)\n  - Make a simple SQLite using C++, Part 4\n    - Retrieve data using a full-table scan\n    - Assignment #3\n      - Retrieve data using an index\n\n## References\n\n- [C++ Reference](https://en.cppreference.com/w/)\n- [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines)\n- [SQLite Documentation](https://www.sqlite.org/docs.html)\n- [SQLite Source Repository](https://sqlite.org/src/tree?ci=trunk)\n- [How Does a Database Work?](https://cstack.github.io/db_tutorial/)\n\n## How To Contribute\n\nContributions are always welcome, either reporting issues/bugs or forking the repository and then issuing pull requests when you have completed some additional coding that you feel will be beneficial to the main project. If you are interested in contributing in a more dedicated capacity, then please contact me.\n\n## Contact\n\nYou can contact me via e-mail (utilForever at gmail.com). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making.\n\n## License\n\n\u003cimg align=\"right\" src=\"https://149753425.v2.pressablecdn.com/wp-content/uploads/2009/06/OSIApproved_100X125.png\"\u003e\n\nThe class is licensed under the [MIT License](http://opensource.org/licenses/MIT):\n\nCopyright \u0026copy; 2025 [Chris Ohk](http://www.github.com/utilForever).\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futilforever%2F2025-matkor-make-sqlite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futilforever%2F2025-matkor-make-sqlite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futilforever%2F2025-matkor-make-sqlite/lists"}