{"id":19808440,"url":"https://github.com/limitium/jkeeper","last_synced_at":"2026-06-12T17:31:24.020Z","repository":{"id":5276611,"uuid":"6455657","full_name":"limitium/jKeeper","owner":"limitium","description":"small java orm","archived":false,"fork":false,"pushed_at":"2012-12-28T10:40:48.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T18:23:41.428Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/limitium.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-10-30T10:43:41.000Z","updated_at":"2014-05-18T02:38:47.000Z","dependencies_parsed_at":"2022-07-04T19:31:24.145Z","dependency_job_id":null,"html_url":"https://github.com/limitium/jKeeper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/limitium/jKeeper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitium%2FjKeeper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitium%2FjKeeper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitium%2FjKeeper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitium%2FjKeeper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/limitium","download_url":"https://codeload.github.com/limitium/jKeeper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limitium%2FjKeeper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34256180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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":[],"created_at":"2024-11-12T09:13:53.185Z","updated_at":"2026-06-12T17:31:24.003Z","avatar_url":"https://github.com/limitium.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"jKeeper \n===\n\n##Get single object\n```java\nADVehicle ad = k.one(\"select * from ADVehicle where Number = 8434211\", ADVehicle.class);\n```\n\n##Get list of objects\n```java\nList\u003cOffer\u003e list = k.list(\"select top 10 * from Offer\", Offer.class);\n```    \n    \n##Insert object\n```java   \nADVehicle ad = new ADVehicle();\nk.insert(ad);\n```\n\n##Update object\n```java  \nADVehicle savedAd = k.one(\"select * from ADVehicle where regnumber='keeper'\", ADVehicle.class);\nsavedAd.setADMake(\"bmw\");\nk.update(savedAd);\n```\n    \n##Use query specific fields\n```java\nADVehicle ad = k.one(\"select CompanyId,RegNumber as rg_id,RegCode as rg,Number from ADVehicle where Number = 8434211\", ADVehicle.class, new HashMap\u003cString, String\u003e() {{\n  put(\"RegNumber\", \"rg_id\");\n  put(\"RegCode\", \"rg\");\n}});\n``` \n    \n##Custom data processing\n```java\nfinal StringBuffer data = new StringBuffer(\"\");\nnew Command(k, \"SELECT TOP 1000 * FROM VISLog  where OperationId='keeper'\") {\n  @Override //Call for each row in ResultSet\n  public void work(ResultSet rs) throws SQLException {\n      data.append(rs.getString(\"OperationId\"));\n  }\n}      \n      .execute();\n\nSystem.out.println(data); //\u003e\u003e\u003ekeeperkeeperkeeperkeeper\n```      \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimitium%2Fjkeeper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flimitium%2Fjkeeper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimitium%2Fjkeeper/lists"}