{"id":29905347,"url":"https://github.com/project-tsurugi/iceaxe","last_synced_at":"2026-04-01T21:03:16.556Z","repository":{"id":198149530,"uuid":"473905012","full_name":"project-tsurugi/iceaxe","owner":"project-tsurugi","description":"java library for Tsurugi","archived":false,"fork":false,"pushed_at":"2026-03-06T00:09:36.000Z","size":3133,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2026-03-06T04:22:15.402Z","etag":null,"topics":["database-access-library","java","java-11","java-library","sql","tsurugidb"],"latest_commit_sha":null,"homepage":"https://project-tsurugi.github.io/iceaxe/","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/project-tsurugi.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":".github/CODEOWNERS","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":"2022-03-25T07:09:32.000Z","updated_at":"2026-03-06T00:03:15.000Z","dependencies_parsed_at":"2023-10-16T14:54:11.644Z","dependency_job_id":"4eee152c-ef1d-4f27-b161-2be89be7bc18","html_url":"https://github.com/project-tsurugi/iceaxe","commit_stats":null,"previous_names":["project-tsurugi/iceaxe"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/project-tsurugi/iceaxe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Ficeaxe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Ficeaxe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Ficeaxe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Ficeaxe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/project-tsurugi","download_url":"https://codeload.github.com/project-tsurugi/iceaxe/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-tsurugi%2Ficeaxe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31014687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-27T02:58:54.984Z","status":"ssl_error","status_checked_at":"2026-03-27T02:58:46.993Z","response_time":164,"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":["database-access-library","java","java-11","java-library","sql","tsurugidb"],"created_at":"2025-08-01T19:10:48.397Z","updated_at":"2026-04-01T21:03:16.548Z","avatar_url":"https://github.com/project-tsurugi.png","language":"Java","readme":"# Iceaxe - java library for Tsurugi\n\nIceaxe is a Java library that executes SQL on Tsurugi database.\n\nIceaxe is not JDBC, but the program layer is similar to JDBC.\n\n[The book about Tsurugi](https://info.nikkeibp.co.jp/media/LIN/atcl/books/091300039/) explains Iceaxe.\n\n## Requirements\n\n* Java `\u003e= 11`\n\n* dependent modules:\n  * [Tsubakuro](https://github.com/project-tsurugi/tsubakuro)\n  * SLF4J\n\n## Javadoc\n\n[![javadoc](https://javadoc.io/badge2/com.tsurugidb.iceaxe/iceaxe-core/javadoc.svg)](https://javadoc.io/doc/com.tsurugidb.iceaxe/iceaxe-core)\n\n* GitHub Pages (Latest version)\n  * https://project-tsurugi.github.io/iceaxe/\n* javadoc.io (All versions of javadoc can be referenced)\n  * https://javadoc.io/doc/com.tsurugidb.iceaxe/iceaxe-core/latest/index.html\n\n## How to use\n\nIceaxe is hosted on Maven Central Repository.\n\n* https://central.sonatype.com/artifact/com.tsurugidb.iceaxe/iceaxe-core/overview\n\nTo use on Gradle, add Iceaxe library to dependencies.\n\n```\ndependencies {\n    implementation 'com.tsurugidb.iceaxe:iceaxe-core:1.14.0'\n\n    implementation 'org.slf4j:slf4j-simple:1.7.32'\n}\n```\n\n## Example\n\n```java\nimport java.net.URI;\nimport com.tsurugidb.iceaxe.TsurugiConnector;\nimport com.tsurugidb.iceaxe.transaction.manager.TgTmSetting;\nimport com.tsurugidb.iceaxe.transaction.option.TgTxOption;\n\nvar endpoint = URI.create(\"tcp://localhost:12345\");\nvar connector = TsurugiConnector.of(endpoint);\ntry (var session = connector.createSession()) {\n    try (var ps = session.createStatement(\"update customer set c_age = c_age + 1\")) {\n        var setting = TgTmSetting.ofAlways(TgTxOption.ofOCC());\n        var tm = session.createTransactionManager(setting);\n        tm.execute(transaction -\u003e {\n            transaction.executeAndGetCount(ps);\n        });\n    }\n}\n```\n\nSee also [iceaxe-examples](modules/iceaxe-examples/src/main/java/com/tsurugidb/iceaxe/example).\n\n## How to build\n\n```bash\ncd iceaxe\n./gradlew build\n```\n\n### Build with Tsubakuro that installed locally\n\nFirst, check out and install Tsubakuro locally, and build Iceaxe with Gradle Property `mavenLocal` .\n\n```bash\ncd tsubakuro\n./gradlew publishToMavenLocal -PskipBuildNative\n\ncd iceaxe\n./gradlew build -PmavenLocal\n```\n\n## License\n\n[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-tsurugi%2Ficeaxe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproject-tsurugi%2Ficeaxe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-tsurugi%2Ficeaxe/lists"}