{"id":18614975,"url":"https://github.com/andrewjbateman/ionic-angular-sqlite","last_synced_at":"2025-08-22T08:08:00.005Z","repository":{"id":40668959,"uuid":"186403369","full_name":"AndrewJBateman/ionic-angular-sqlite","owner":"AndrewJBateman","description":":clipboard: App to store data using the Ionic framework, cordova SQLite database, cordova SQLite Porter and Capacitor.","archived":false,"fork":false,"pushed_at":"2023-05-24T01:26:30.000Z","size":2954,"stargazers_count":3,"open_issues_count":2,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T06:51:13.322Z","etag":null,"topics":["angular","angular15","capacitor","cordova-plugin","cordova-sqlite-database","css3","database","html5","ionic","ionic-angular","ionic6","sqlite","sqlite-porter","typescript4"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/AndrewJBateman.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":"2019-05-13T11:06:31.000Z","updated_at":"2023-10-06T07:31:34.000Z","dependencies_parsed_at":"2023-02-18T14:30:53.350Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/ionic-angular-sqlite","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-sqlite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-sqlite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-sqlite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-sqlite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/ionic-angular-sqlite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248322234,"owners_count":21084333,"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":["angular","angular15","capacitor","cordova-plugin","cordova-sqlite-database","css3","database","html5","ionic","ionic-angular","ionic6","sqlite","sqlite-porter","typescript4"],"created_at":"2024-11-07T03:27:40.130Z","updated_at":"2025-04-11T00:30:57.441Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","readme":"# Ionic Angular SQLite\n\n* App to store data using the [Ionic framework](https://ionicframework.com/docs), [cordova SQLite database](https://ionicframework.com/docs/native/sqlite) \u0026 [SQLite Porter](https://ionicframework.com/docs/native/sqlite-porter) and [Capacitor](https://capacitor.ionicframework.com/).\n* **Note:** to open web links in a new window use: _ctrl+click on link_\n\n![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/ionic-angular-sqlite?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/ionic-angular-sqlite?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/ionic-angular-sqlite?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/ionic-angular-sqlite?style=plastic)\n\n## Table of contents\n\n* [:zap: Ionic Angular SQLite](#zap-ionic-angular-sqlite)\n  * [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)\n  * [:books: General info](#books-general-info)\n  * [:camera: Screenshots](#camera-screenshots)\n  * [:signal_strength: Technologies](#signal_strength-technologies)\n  * [:floppy_disk: Setup](#floppy_disk-setup)\n  * [:computer: Code Examples](#code-examples)\n  * [:cool: Features](#features)\n  * [:clipboard: Status \u0026 To-Do List](#status--to-do-list)\n  * [:clap: Inspiration](#inspiration)\n  * [:file_folder: License](#file_folder-license)\n  * [:envelope: Contact](#contact)\n\n## General info\n\n* App allows user to add details of developer and products.\n* Initial seed data is a short list of developers and dev skills.\n\n## Screenshots\n\n![example screen print](./img/dev.screen.png)\n![example screen print](./img/products-screen.png)\n\n## Technologies\n\n* [Ionic/angular v6](https://ionicframework.com/)\n* [Ionic v6](https://ionicframework.com/docs/cli)\n* [Angular v15](https://angular.io/)\n* [cordova plugin SQLite database v6](https://ionicframework.com/docs/native/sqlite)\n* [cordova SQLite Porter v6](https://ionicframework.com/docs/native/sqlite-porter)\n\n## Setup\n\n* Run `npm i` to install dependencies\n* To start the server on _localhost://8100_ type: 'ionic serve'\n\n## Code Examples\n\n* `database.service.ts` function to get details of a developer from the database that return a promise of format Dev\n\n```typescript\ngetDeveloper(id): Promise\u003cDev\u003e {\n  return this.database.executeSql('SELECT * FROM developer WHERE id = ?', [id]).then(data =\u003e {\n    let skills = [];\n    if (data.rows.item[0].skills !== '') {\n      skills = JSON.parse(data.rows.item[0].skills);\n    }\n\n    return {\n      id: data.rows.item(0).is,\n      name: data.rows.item(0).name,\n      skills,\n      img: data.rows.item[0].img\n    };\n  });\n}\n```\n\n## Features\n\n* storage of data in an SQL database.\n\n## Status \u0026 To-do list\n\n* Status: compiles and displays in a dev server. Build webpacks created. Needs implementing on an Android device or simulator to use database etc. Database side not tested.\n* To-do: test database to see if it stores Dev and Product details.\n\n## Inspiration\n\n* [devdactic: How to Build an Ionic 4 App with SQLite Database \u0026 Queries (And Debug It!)](https://devdactic.com/ionic-4-sqlite-queries/).\n\n## :file_folder: License\n\n* This project is licensed under the terms of the MIT license.\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://github.com/AndrewJBateman), email: gomezbateman@yahoo.com\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-sqlite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fionic-angular-sqlite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-sqlite/lists"}