{"id":21252842,"url":"https://github.com/kevinhellos/sqlite3demo","last_synced_at":"2025-08-24T08:27:09.999Z","repository":{"id":240754362,"uuid":"803391852","full_name":"kevinhellos/sqlite3Demo","owner":"kevinhellos","description":"Demo for using sqlite3","archived":false,"fork":false,"pushed_at":"2024-06-18T12:46:33.000Z","size":5761,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-21T21:08:19.389Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/kevinhellos.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}},"created_at":"2024-05-20T16:24:16.000Z","updated_at":"2024-06-18T12:46:36.000Z","dependencies_parsed_at":"2024-05-20T19:47:21.042Z","dependency_job_id":null,"html_url":"https://github.com/kevinhellos/sqlite3Demo","commit_stats":null,"previous_names":["iskevinlemon/sqlite3demo","kevinhellos/sqlite3demo"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinhellos%2Fsqlite3Demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinhellos%2Fsqlite3Demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinhellos%2Fsqlite3Demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinhellos%2Fsqlite3Demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kevinhellos","download_url":"https://codeload.github.com/kevinhellos/sqlite3Demo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243690127,"owners_count":20331727,"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":[],"created_at":"2024-11-21T03:49:06.081Z","updated_at":"2025-03-15T05:41:31.915Z","avatar_url":"https://github.com/kevinhellos.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sqlite3Demo\nDemo for using sqlite3\n\n## Commands\n### Initialise a database\n```sh\nsqlite3 database.db\n```\n### Create table\nE.g creating a Customers table\n```sh\nCREATE TABLE Customers(customer_id INTEGER NOT NULL, customer_name VARCHAR(255));\n```\n\n### Show all tables\n```sh\n.tables\n```\n\n### Show all commands use to create the table (show db structure)\n```sh\n.schema Customers\n```\n\n### Show all records\n```sh\nSELECT * FROM Customers;\n```\n\n### Enable foreign key constraint\n```sh\nPRAGMA foreign_keys=ON;\n```\n\n### Generate all of the commands needed to recreate the database\n```sh\n.dump\n```\n\n### Exit\n```sh\n.exit\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevinhellos%2Fsqlite3demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkevinhellos%2Fsqlite3demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevinhellos%2Fsqlite3demo/lists"}