{"id":23116402,"url":"https://github.com/3dcitydb/sqlbuilder","last_synced_at":"2026-01-31T12:19:37.376Z","repository":{"id":52649814,"uuid":"118969602","full_name":"3dcitydb/sqlbuilder","owner":"3dcitydb","description":"Dynamic SQL builder for the 3D City Database","archived":false,"fork":false,"pushed_at":"2026-01-26T15:06:57.000Z","size":737,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":14,"default_branch":"master","last_synced_at":"2026-01-26T22:42:28.191Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/3dcitydb.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-01-25T21:25:55.000Z","updated_at":"2026-01-26T15:07:08.000Z","dependencies_parsed_at":"2024-02-20T15:54:57.102Z","dependency_job_id":"7946124b-f921-44ec-91dd-4c67b23e673c","html_url":"https://github.com/3dcitydb/sqlbuilder","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/3dcitydb/sqlbuilder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3dcitydb%2Fsqlbuilder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3dcitydb%2Fsqlbuilder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3dcitydb%2Fsqlbuilder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3dcitydb%2Fsqlbuilder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3dcitydb","download_url":"https://codeload.github.com/3dcitydb/sqlbuilder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3dcitydb%2Fsqlbuilder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28942297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T12:10:04.904Z","status":"ssl_error","status_checked_at":"2026-01-31T12:09:58.894Z","response_time":128,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-12-17T04:16:08.409Z","updated_at":"2026-01-31T12:19:37.313Z","avatar_url":"https://github.com/3dcitydb.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sqlbuilder\nDynamic SQL builder for the 3D City Database\n\n```sql\nselect\n  *\nfrom\n  author a\n  join book b on a.id = b.author_id\nwhere\n  a.year_of_birth \u003e 1920\n  and a.first_name = 'Paulo'\norder by\n  a.title\n```\n\n```java\nTable author = Table.of(\"author\");\nTable book = Table.of(\"book\");\n\nSelect select = Select.newInstance()\n  .from(author)\n  .join(book).on(author.column(\"id\").eq(book.column(\"author_id\")))\n  .where(author.column(\"year_of_birth\").gt(1920)\n    .and(author.column(\"first_name\").eq(\"Paulo\")))\n  .orderBy(author.column(\"title\"));\n\nSystem.out.println(\n  select.toSql(SqlBuildOptions.defaults().setIndent(\"  \")));\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3dcitydb%2Fsqlbuilder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3dcitydb%2Fsqlbuilder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3dcitydb%2Fsqlbuilder/lists"}