{"id":27933125,"url":"https://github.com/handrake/sqlua","last_synced_at":"2025-05-07T04:27:31.112Z","repository":{"id":291384824,"uuid":"977180391","full_name":"handrake/sqlua","owner":"handrake","description":"Pure LuaJIT+FFI SQLite3 binding","archived":false,"fork":false,"pushed_at":"2025-05-04T09:27:33.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-04T10:24:55.419Z","etag":null,"topics":["lua","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/handrake.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}},"created_at":"2025-05-03T15:54:22.000Z","updated_at":"2025-05-04T09:26:49.000Z","dependencies_parsed_at":"2025-05-04T10:25:05.534Z","dependency_job_id":null,"html_url":"https://github.com/handrake/sqlua","commit_stats":null,"previous_names":["handrake/sqlua"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/handrake%2Fsqlua","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/handrake%2Fsqlua/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/handrake%2Fsqlua/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/handrake%2Fsqlua/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/handrake","download_url":"https://codeload.github.com/handrake/sqlua/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252812591,"owners_count":21808168,"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":["lua","sqlite3"],"created_at":"2025-05-07T04:27:30.616Z","updated_at":"2025-05-07T04:27:31.096Z","avatar_url":"https://github.com/handrake.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sqlua\n\n[![GitHub Stars](https://img.shields.io/github/stars/handrake/sqlua?style=social)](https://github.com/handrake/sqlua/stargazers)\n[![GitHub Watchers](https://img.shields.io/github/watchers/handrake/sqlua?style=social)](https://github.com/handrake/sqlua/watchers)\n\nPure LuaJIT+FFI SQLite3 binding with:\n\n- Named + positional binding\n- Statement caching\n- Zero C code\n\n## Example\n\n```lua\nlocal sqlua = require(\"sqlua\")\nlocal db = sqlua.connect(\":memory:\")\n\ndb:execute(\"CREATE TABLE users (id INT, name TEXT)\")\ndb:execute(\"INSERT INTO users VALUES (?, ?)\", {1, \"Alice\"})\n\nfor row in db:rows(\"SELECT * FROM users\") do\n    print(row.id, row.name)\nend\n\ndb:close()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhandrake%2Fsqlua","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhandrake%2Fsqlua","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhandrake%2Fsqlua/lists"}