{"id":17216546,"url":"https://github.com/lorddarkula/easyql","last_synced_at":"2026-05-01T12:32:24.130Z","repository":{"id":56909813,"uuid":"64422109","full_name":"LordDarkula/EasyQL","owner":"LordDarkula","description":"SQLite wrapper for iOS","archived":false,"fork":false,"pushed_at":"2016-10-25T00:35:17.000Z","size":128,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-15T17:13:31.875Z","etag":null,"topics":["cocoapods","database","ios-lib","objective-c","objective-c-library","sqlite"],"latest_commit_sha":null,"homepage":"https://lorddarkula.github.io/EasyQL","language":"Objective-C","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/LordDarkula.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}},"created_at":"2016-07-28T19:22:01.000Z","updated_at":"2016-11-24T17:56:58.000Z","dependencies_parsed_at":"2022-08-20T19:50:33.636Z","dependency_job_id":null,"html_url":"https://github.com/LordDarkula/EasyQL","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/LordDarkula/EasyQL","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LordDarkula%2FEasyQL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LordDarkula%2FEasyQL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LordDarkula%2FEasyQL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LordDarkula%2FEasyQL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LordDarkula","download_url":"https://codeload.github.com/LordDarkula/EasyQL/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LordDarkula%2FEasyQL/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278511799,"owners_count":25999185,"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-05T02:00:06.059Z","response_time":54,"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":["cocoapods","database","ios-lib","objective-c","objective-c-library","sqlite"],"created_at":"2024-10-15T03:28:02.272Z","updated_at":"2025-10-05T20:22:51.322Z","avatar_url":"https://github.com/LordDarkula.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EasyQL\n\n[![Build Status](https://travis-ci.org/LordDarkula/EasyQL.svg?branch=master)](https://travis-ci.org/LordDarkula/EasyQL)\n[![Version](https://img.shields.io/cocoapods/v/EasyQL.svg?style=flat)](http://cocoapods.org/pods/EasyQL)\n[![License](https://img.shields.io/cocoapods/l/EasyQL.svg?style=flat)](http://cocoapods.org/pods/EasyQL)\n[![Platform](https://img.shields.io/cocoapods/p/EasyQL.svg?style=flat)](http://cocoapods.org/pods/EasyQL)\n[![Twitter](https://img.shields.io/badge/twitter-@LordDarkula-blue.svg?style=flat)](http://twitter.com/LordDarkula)\n\n## Introduction\n\nA quick and convenient way to create and manage local sqlite3 databases. Databases can be created with a single line of code. Data can be get and set without creating queries. Queries can also be passed in as a string.\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Requirements\n\n- iOS 8.0+ \n- Xcode 7.3+\n\n## Installation\n\n### CocoaPods\n\n[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:\n\n```bash\n$ gem install cocoapods\n```\n\n\u003e CocoaPods 0.39.0+ is required to build EasyQL \n\nTo install it, simply add the following line to your Podfile:\n\n```ruby\npod \"EasyQL\"\n```\n\n## Author\n\nAubhro, aubhrosengupta@gmail.com\n\n## License\n\nEasyQL is available under the MIT license. See the LICENSE file for more info.\n\n## Usage\n\nFirst, import EasyQL\n```objc\n#import \u003cEasyQL.h\u003e\n```\n\nCreate a table\n```objc\n// Table name stored in myTableName\nNSString *name = @\"myTableName\";\n\n// Columns named \"first\" and \"second\"\nNSArray *columns = @[@\"first\", @\"second\"];\n\n[EasyQL createDB:name :columns];\n```\n\nAdd data to the table\n```objc\nNSMutableArray *data = [[NSMutableArray alloc] init];\n[data insertObject:@[@\"one\", @\"two\"] atIndex:0];\n[data insertObject:@[@\"three\", @\"four\"] atIndex:1];\n\n[EasyQL setData:name :columns :data];\n```\n\nTo get the data \n```objc\nNSMutableArray *data = [EasyQL getData:name];\n```\ndata would have the following structure\n```objc\n@[ @[ @\"one\", @\"two\"],\n   @[ @\"three\", @\"four\"]]\n```\n\nTo use queries with EasyQL\n```objc\n\n// This particular query deletes everything in the query, but any query should work\nNSString *query = [NSString stringWithFormat:@\"DELETE FROM %@\", name];\n[SQL applyQuery:name :query];\n```\n\nThats it for now. I will keep adding functionality as time goes on.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florddarkula%2Feasyql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Florddarkula%2Feasyql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florddarkula%2Feasyql/lists"}