{"id":19928315,"url":"https://github.com/mrotteveel/jaybird-fbclient","last_synced_at":"2025-05-03T10:31:10.561Z","repository":{"id":73981611,"uuid":"186132769","full_name":"mrotteveel/jaybird-fbclient","owner":"mrotteveel","description":"Firebird Native Client Distribution for Jaybird","archived":false,"fork":false,"pushed_at":"2025-04-05T11:25:01.000Z","size":38219,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T12:25:24.111Z","etag":null,"topics":["fbclient","firebird","java","jaybird","jdbc"],"latest_commit_sha":null,"homepage":"","language":null,"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/mrotteveel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":"mrotteveel"}},"created_at":"2019-05-11T12:54:06.000Z","updated_at":"2025-04-05T11:24:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"238be31a-5ea4-4ced-ae79-e8253a91961d","html_url":"https://github.com/mrotteveel/jaybird-fbclient","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrotteveel%2Fjaybird-fbclient","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrotteveel%2Fjaybird-fbclient/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrotteveel%2Fjaybird-fbclient/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrotteveel%2Fjaybird-fbclient/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrotteveel","download_url":"https://codeload.github.com/mrotteveel/jaybird-fbclient/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252178671,"owners_count":21707038,"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":["fbclient","firebird","java","jaybird","jdbc"],"created_at":"2024-11-12T22:36:50.876Z","updated_at":"2025-05-03T10:31:10.555Z","avatar_url":"https://github.com/mrotteveel.png","language":null,"funding_links":["https://github.com/sponsors/mrotteveel"],"categories":[],"sub_categories":[],"readme":"Firebird Native Client Distribution for Jaybird\n===============================================\n\n[![MavenCentral](https://maven-badges.herokuapp.com/maven-central/org.firebirdsql.jdbc/fbclient/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.firebirdsql.jdbc/fbclient/)\n\nBundle of [Firebird](https://www.firebirdsql.org/) native client libraries for\nuse with Jaybird 3 and higher.\n\nThis bundle packages `fbclient.dll`/`libfbclient.so` for the following \nplatforms:\n\n* Windows (x86, and x86-64)\n* Linux (x86, x86-64, and, since 5.0.1.0, aarch64, and arm)\n* macOS (since 5.0.1.0: x86-64, and aarch64)\n\nIt can be used with [Jaybird](https://github.com/FirebirdSQL/jaybird) for \nthe `native` and `local` protocols. It does not support the `embedded` protocol.\n\nUsage\n-----\n\nTo use this bundle, you need to depend on this library, your preferred \nJaybird 3 (or higher) version, and the JNA version required by that version of \nJaybird:\n\n```xml\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eorg.firebirdsql.jdbc\u003c/groupId\u003e\n        \u003cartifactId\u003efbclient\u003c/artifactId\u003e\n        \u003cversion\u003e5.0.2.0\u003c/version\u003e\n    \u003c/dependency\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eorg.firebirdsql.jdbc\u003c/groupId\u003e\n        \u003cartifactId\u003ejaybird\u003c/artifactId\u003e\n        \u003cversion\u003e6.0.1\u003c/version\u003e\n    \u003c/dependency\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003eorg.firebirdsql.jdbc\u003c/groupId\u003e\n      \u003cartifactId\u003ejaybird-native\u003c/artifactId\u003e\n      \u003cversion\u003e6.0.1\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\nYou can now use the native protocol without having fbclient on the library path:\n\n```java\npublic class Example {\n    public static void main(String[] args) {\n        try (Connection connection = DriverManager.getConnection(\n                \"jdbc:firebird:native:localhost:employee\", \"user\", \"password\")) {\n            // use connection\n        } catch (SQLException e) {\n            e.printStackTrace();\n        }\n    }\n}\n```\n\n### OS-specific packages\n\nSince version 5.0.1.1, it is possible to only download libraries for a specific\nOS and, optionally, architecture. If you add a `classifier` to the Maven\n`dependency`, it will only download the JAR with libraries for that specific OS,\nor only the library for the specified OS and architecture.\n\nThe available classifiers are:\n\n* `darwin` (macOS)\n  * `darwin-aarch64`\n  * `darwin-x86`\n* `linux` (Linux)\n  * `linux-aarch64`\n  * `linux-arm`\n  * `linux-x86`\n  * `linux-x86-64`\n* `win32` (Windows)\n  * `win32-x86`\n  * `win32-x86-64`\n\nThe names of the classifiers are the technical names used by JNA (Java Native \nAccess) for identifying libraries for a specific platform.\n    \nFor example, to only get the Windows 64-bit (x86-64/AMD64) library:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.firebirdsql.jdbc\u003c/groupId\u003e\n    \u003cartifactId\u003efbclient\u003c/artifactId\u003e\n    \u003cversion\u003e5.0.1.1\u003c/version\u003e\n    \u003cclassifier\u003ewin32-x86-64\u003c/classifier\u003e\n\u003c/dependency\u003e\n```\n\nDownload\n--------\n\n### Version 5.0.2.0 ###\n\n[fbclient-5.0.2.0.jar](https://repo1.maven.org/maven2/org/firebirdsql/jdbc/fbclient/5.0.2.0/)\n\n### Version 4.0.5.0 ###\n\n[fbclient-4.0.5.0.jar](https://repo1.maven.org/maven2/org/firebirdsql/jdbc/fbclient/4.0.5.0/)\n\n### Version 3.0.12.0 ###\n\n[fbclient-3.0.12.0.jar](https://repo1.maven.org/maven2/org/firebirdsql/jdbc/fbclient/3.0.12.0/)\n\nBuild information\n-----------------\n\n### Version ###\n\nThe version has 4 components. The first three are the Firebird version that\nsourced the libraries (e.g. 3.0.4). The last part is a 'build' identifier, which\nshould usually be 0. The 'build' identifier may be incremented for patches or\nnew platforms added. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrotteveel%2Fjaybird-fbclient","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrotteveel%2Fjaybird-fbclient","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrotteveel%2Fjaybird-fbclient/lists"}