{"id":34660961,"url":"https://github.com/clinton-mwachia/go-sqlite-mastery","last_synced_at":"2026-04-19T20:34:12.920Z","repository":{"id":328113060,"uuid":"1090850493","full_name":"clinton-mwachia/go-sqlite-mastery","owner":"clinton-mwachia","description":"Master Golang and sqlite to develop practical applications.","archived":false,"fork":false,"pushed_at":"2026-02-02T07:34:00.000Z","size":108,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-02T19:58:57.085Z","etag":null,"topics":["database","go","golang","sqlite-database","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"Go","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/clinton-mwachia.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-11-06T08:13:46.000Z","updated_at":"2026-02-02T07:34:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/clinton-mwachia/go-sqlite-mastery","commit_stats":null,"previous_names":["clinton-mwachia/go-sqlite-mastery"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/clinton-mwachia/go-sqlite-mastery","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clinton-mwachia%2Fgo-sqlite-mastery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clinton-mwachia%2Fgo-sqlite-mastery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clinton-mwachia%2Fgo-sqlite-mastery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clinton-mwachia%2Fgo-sqlite-mastery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clinton-mwachia","download_url":"https://codeload.github.com/clinton-mwachia/go-sqlite-mastery/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clinton-mwachia%2Fgo-sqlite-mastery/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32022239,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["database","go","golang","sqlite-database","sqlite3"],"created_at":"2025-12-24T18:52:55.783Z","updated_at":"2026-04-19T20:34:12.912Z","avatar_url":"https://github.com/clinton-mwachia.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go + SQLite Mastery\n\nThe goal of this repository is to teach you how to use **Go** with **SQLite** to build practical applications.\n\n---\n\n## **Code Structure**\n\n1. **Connect to SQLite**\n2. **Creating Tables**\n3. **Insert data into a Table**\n4. **Insert multiple rows into a Table**\n5. **Select All from a Table**\n6. **Select by Id from a Table**\n7. **Update Data by Id from a Table**\n8. **Delete Data by Id from a Table**\n9. **Delete many rows from a Table**\n10. **Import csv data into the Table**\n11. **Order results By**\n12. **Limit Results**\n13. **Where Operator**\n14. **Between Operator**\n15. **And Operator**\n16. **In Operator**\n17. **Or Operator**\n18. **Like Operator**\n19. **IS NULL Operator**\n20. **Glob Operator**\n21. **Distinct Operator**\n22. **Average Function**\n23. **Count Function**\n24. **Max Function**\n25. **Min Function**\n26. **Total Function**\n\n---\n\n## **Getting Started**\n\n### **1. Clone the Repository**\n\n```bash\ngit clone https://github.com/clinton-mwachia/go-sqlite-mastery.git\ncd go-sqlite-mastery\n```\n\n### **2. Install Dependencies**\n\n```bash\ngo mod tidy\n```\n\n### **3. Run Example Code**\n\nEach folder contains a `main.go` or multiple Go files. Navigate to the folder and run:\n\n```bash\ngo run main.go\n```\n\n---\n\n## **Folder Structure**\n\n```\ngo-sqlite-mastery/\n│\n├─ 01-connect-to-sqlite/\n├─ 02-creating-tables/\n├─ 03-inserting-row/\n├─ ...\n├─ ...\n├─ ...\n├─ ...\n└─ ...\n.gitignore\nLICENSE\nREADME.md\n```\n\n---\n\n## **Resources**\n\n- [SQLite Tutorial for Go](https://www.sqlitetutorial.net/sqlite-go/)\n- [Go `database/sql` package](https://pkg.go.dev/database/sql)\n- [SQLite Documentation](https://www.sqlite.org/docs.html)\n\n---\n\n## **License**\n\nThis repository is licensed under the **MIT License**. See [LICENSE](LICENSE) for details.\n\n---\n\n## **Support Me**\n\nDon’t forget to:\n\n- Star this repository ⭐\n- Share with your friends learning Go\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclinton-mwachia%2Fgo-sqlite-mastery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclinton-mwachia%2Fgo-sqlite-mastery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclinton-mwachia%2Fgo-sqlite-mastery/lists"}