{"id":14960986,"url":"https://github.com/gilzoide/unity-sqlite-asset","last_synced_at":"2025-10-15T16:30:44.723Z","repository":{"id":217033332,"uuid":"742971091","full_name":"gilzoide/unity-sqlite-asset","owner":"gilzoide","description":"Read-only SQLite database assets for Unity with ScriptedImporters for \".sqlite\", \".sqlite2\" and \".sqlite3\" files","archived":false,"fork":false,"pushed_at":"2025-06-28T16:38:28.000Z","size":414,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-28T17:35:47.580Z","etag":null,"topics":["csv","scriptableobject","sqlite","sqlite-net","sqlite3","unity","unity3d","upm","upm-package"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gilzoide.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"publiccode":null,"codemeta":null},"funding":{"github":["gilzoide"],"patreon":null,"open_collective":null,"ko_fi":"gilzoide","tidelift":null,"community_bridge":null,"liberapay":"gilzoide","issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2024-01-13T22:58:32.000Z","updated_at":"2025-06-28T16:38:31.000Z","dependencies_parsed_at":"2024-01-22T22:12:03.191Z","dependency_job_id":"dd7ee10f-2348-4e63-b314-59f5ad847ee1","html_url":"https://github.com/gilzoide/unity-sqlite-asset","commit_stats":{"total_commits":46,"total_committers":1,"mean_commits":46.0,"dds":0.0,"last_synced_commit":"ab370dbaf60a6557598029df7fc1582e2ab4b736"},"previous_names":["gilzoide/unity-sqlite-asset"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/gilzoide/unity-sqlite-asset","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-sqlite-asset","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-sqlite-asset/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-sqlite-asset/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-sqlite-asset/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gilzoide","download_url":"https://codeload.github.com/gilzoide/unity-sqlite-asset/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-sqlite-asset/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279093209,"owners_count":26101901,"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-15T02:00:07.814Z","response_time":56,"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":["csv","scriptableobject","sqlite","sqlite-net","sqlite3","unity","unity3d","upm","upm-package"],"created_at":"2024-09-24T13:23:36.123Z","updated_at":"2025-10-15T16:30:44.718Z","avatar_url":"https://github.com/gilzoide.png","language":"C#","funding_links":["https://github.com/sponsors/gilzoide","https://ko-fi.com/gilzoide","https://liberapay.com/gilzoide"],"categories":[],"sub_categories":[],"readme":"# SQLite Asset\n[![openupm](https://img.shields.io/npm/v/com.gilzoide.sqlite-asset?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.gilzoide.sqlite-asset/)\n\n\u003e **Warning**: this package is deprecated, since SQLite-net incorporated the functionality of this package.\n\nRead-only [SQLite](https://sqlite.org/) database assets for Unity.\n\nAutomatically imports \".sqlite\", \".sqlite2\" and \".sqlite3\" files as SQLite database assets.\n\n\n## Features\n- [SqliteAsset](Runtime/SqliteAsset.cs): read-only SQLite database Unity assets.\n  + Files with the extensions \".sqlite\", \".sqlite2\" and \".sqlite3\" will be imported as SQLite database assets.\n  + Use the `CreateConnection()` method for connecting to the database provided by the asset.\n    Make sure to `Dispose()` of any connections you create.\n  + SQLite assets may be loaded from Streaming Assets folder or from memory, depending on the value of their \"Streaming Assets Path\" property.\n  + **Warning**: Android and WebGL platforms don't support loading SQLite databases from Streaming Assets and will always load them in memory.\n- `SQLiteConnection.SerializeToAsset` extension method for serializing a database to an instance of `SqliteAsset`.\n\n\n## Dependencies\n- [SQLite-net](https://github.com/gilzoide/unity-sqlite-net): library for managing SQLite databases\n\n\n## Optional packages\n- [SQLite Asset - CSV](https://github.com/gilzoide/unity-sqlite-asset-csv): easily import \".csv\" files as read-only SQLite database assets\n\n\n## How to install\nEither:\n- Use the [openupm registry](https://openupm.com/) and install this package using the [openupm-cli](https://github.com/openupm/openupm-cli):\n  ```\n  openupm add com.gilzoide.sqlite-asset\n  ```\n- Install using the [Unity Package Manager](https://docs.unity3d.com/Manual/upm-ui-giturl.html) with the following URL:\n  ```\n  https://github.com/gilzoide/unity-sqlite-asset.git#1.0.0-preview2\n  ```\n- Clone this repository or download a snapshot of it directly inside your project's `Assets` or `Packages` folder.\n\n\n## Credits\n- Database icons from [Solar Icons Set](https://www.figma.com/community/file/1166831539721848736/solar-icons-set), licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilzoide%2Funity-sqlite-asset","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgilzoide%2Funity-sqlite-asset","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilzoide%2Funity-sqlite-asset/lists"}