{"id":13621776,"url":"https://github.com/r2dbc/r2dbc-client","last_synced_at":"2025-04-15T01:34:03.406Z","repository":{"id":96792310,"uuid":"116284366","full_name":"r2dbc/r2dbc-client","owner":"r2dbc","description":"Reactive Relational Database Connectivity","archived":true,"fork":false,"pushed_at":"2020-06-24T09:27:11.000Z","size":762,"stargazers_count":346,"open_issues_count":0,"forks_count":24,"subscribers_count":32,"default_branch":"main","last_synced_at":"2024-08-01T21:49:02.903Z","etag":null,"topics":["api","database","java","reactive","reactive-streams","reactor"],"latest_commit_sha":null,"homepage":"","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/r2dbc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","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}},"created_at":"2018-01-04T16:48:19.000Z","updated_at":"2024-05-14T07:21:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc22f579-b1fd-4807-a25d-0cbb37b1f5eb","html_url":"https://github.com/r2dbc/r2dbc-client","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r2dbc%2Fr2dbc-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r2dbc","download_url":"https://codeload.github.com/r2dbc/r2dbc-client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223654960,"owners_count":17180621,"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":["api","database","java","reactive","reactive-streams","reactor"],"created_at":"2024-08-01T21:01:10.452Z","updated_at":"2025-04-15T01:34:03.400Z","avatar_url":"https://github.com/r2dbc.png","language":"Java","readme":"This project is no longer being actively maintained.\n\n# Reactive Relational Database Connectivity Client (Archived)\nThis project is an exploration of what a Java API for relational database access with [Reactive Streams][rs] might look like.  It uses [Project Reactor][pr].  It uses [Jdbi][jd] as an inspiration.\n\n[jd]: http://jdbi.org\n[pr]: https://projectreactor.io\n[rs]: https://www.reactive-streams.org\n\n## Examples\nA quick example of configuration and execution would look like:\n\n```java\nPostgresqlConnectionConfiguration configuration = PostgresqlConnectionConfiguration.builder()\n    .host(\"\u003chost\u003e\")\n    .database(\"\u003cdatabase\u003e\")\n    .username(\"\u003cusername\u003e\")\n    .password(\"\u003cpassword\u003e\")\n    .build();\n\nR2dbc r2dbc = new R2dbc(new PostgresqlConnectionFactory(configuration));\n\nr2dbc.inTransaction(handle -\u003e\n    handle.execute(\"INSERT INTO test VALUES ($1)\", 100))\n\n    .thenMany(r2dbc.inTransaction(handle -\u003e\n        handle.select(\"SELECT value FROM test\")\n            .mapResult(result -\u003e result.map((row, rowMetadata) -\u003e row.get(\"value\", Integer.class)))))\n\n    .subscribe(System.out::println);\n```\n\n## Maven\nBoth milestone and snapshot artifacts (library, source, and javadoc) can be found in Maven repositories.\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.r2dbc\u003c/groupId\u003e\n  \u003cartifactId\u003er2dbc-client\u003c/artifactId\u003e\n  \u003cversion\u003e0.8.0.RC1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nArtifacts can bound found at the following repositories.\n\n### Repositories\n```xml\n\u003crepository\u003e\n    \u003cid\u003espring-snapshots\u003c/id\u003e\n    \u003cname\u003eSpring Snapshots\u003c/name\u003e\n    \u003curl\u003ehttps://repo.spring.io/snapshot\u003c/url\u003e\n    \u003csnapshots\u003e\n        \u003cenabled\u003etrue\u003c/enabled\u003e\n    \u003c/snapshots\u003e\n\u003c/repository\u003e\n```\n\n```xml\n\u003crepository\u003e\n    \u003cid\u003espring-milestones\u003c/id\u003e\n    \u003cname\u003eSpring Milestones\u003c/name\u003e\n    \u003curl\u003ehttps://repo.spring.io/milestone\u003c/url\u003e\n    \u003csnapshots\u003e\n        \u003cenabled\u003efalse\u003c/enabled\u003e\n    \u003c/snapshots\u003e\n\u003c/repository\u003e\n```\n\n## License\nThis project is released under version 2.0 of the [Apache License][l].\n\n[l]: https://www.apache.org/licenses/LICENSE-2.0\n","funding_links":[],"categories":["Java"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr2dbc%2Fr2dbc-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr2dbc%2Fr2dbc-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr2dbc%2Fr2dbc-client/lists"}