{"id":49859019,"url":"https://github.com/sashok74/fbpp","last_synced_at":"2026-05-14T21:03:17.695Z","repository":{"id":317512022,"uuid":"1036014485","full_name":"sashok74/fbpp","owner":"sashok74","description":"Modern C++20 wrapper for Firebird 5 database with type-safe operations, extended types support (INT128, DECFLOAT), and comprehensive OO API coverage","archived":false,"fork":false,"pushed_at":"2026-05-13T12:14:22.000Z","size":3307,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-13T14:19:00.274Z","etag":null,"topics":["cpp","cpp20","database","firebird","oo-api"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sashok74.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-08-11T12:37:32.000Z","updated_at":"2026-05-13T12:14:37.000Z","dependencies_parsed_at":"2025-10-01T12:07:21.435Z","dependency_job_id":null,"html_url":"https://github.com/sashok74/fbpp","commit_stats":null,"previous_names":["sashok74/fbpp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sashok74/fbpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashok74%2Ffbpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashok74%2Ffbpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashok74%2Ffbpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashok74%2Ffbpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sashok74","download_url":"https://codeload.github.com/sashok74/fbpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashok74%2Ffbpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33043249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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":["cpp","cpp20","database","firebird","oo-api"],"created_at":"2026-05-14T21:03:12.360Z","updated_at":"2026-05-14T21:03:17.688Z","avatar_url":"https://github.com/sashok74.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fbpp - Modern C++20 Firebird Wrapper\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![C++20](https://img.shields.io/badge/C%2B%2B-20-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B20)\n[![Firebird](https://img.shields.io/badge/Firebird-5.x-orange.svg)](https://firebirdsql.org/)\n\nModern, type-safe C++20 wrapper for Firebird 5 database OO API with full support for extended types.\n\n## Features\n\n- **Full Firebird 5 Extended Types** - INT128, DECFLOAT(16/34), NUMERIC(38,x), TIME WITH TIME ZONE, TIMESTAMP WITH TIME ZONE\n- **Type-Safe** - Compile-time type checking with C++20 templates\n- **Multiple Data Formats** - JSON, tuples, and strongly-typed objects\n- **High Performance** - Statement caching and batch operations\n- **Developer Friendly** - Named parameters and RAII resource management\n- **Well Tested** - Comprehensive automated test suite\n\n## Quick Start\n\nUse the canonical guide [doc/fbpp.md](doc/fbpp.md) for the current runtime model, type mapping rules, and query generator workflow.\n\nFor concrete up-to-date code, start with:\n\n- `examples/01_basic_operations.cpp`\n- `examples/02_json_operations.cpp`\n- `examples/08_struct_fetch.cpp`\n- `examples/09_extended_types_struct.cpp`\n\n## Requirements\n\n- **C++20** compiler (GCC 11+, Clang 14+, MSVC 2022+)\n- **Firebird 5.x** client library\n- **CMake 3.20+**\n\n### Dependencies (managed by Conan)\n\n- GoogleTest 1.14+ (testing only)\n- nlohmann_json 3.11+\n\n## Documentation\n\n- [Canonical Library Guide](doc/fbpp.md)\n- [API Reference](https://sashok74.github.io/fbpp/)\n\n## Examples\n\nSee [examples/](examples/) directory for more:\n\n- `01_basic_operations.cpp` - CRUD operations with tuples\n- `02_json_operations.cpp` - JSON parameter binding\n- `03_batch_simple.cpp` - Batch operations\n- `06_named_parameters.cpp` - Named parameter support\n- `07_cancel_operation.cpp` - Cancel long-running queries\n\n## Building from Source\n\n```bash\n# Install dependencies with Conan\nconan install . --output-folder=build --build=missing -s build_type=Release\n\n# Configure CMake\ncmake -S . -B build \\\n  -DCMAKE_TOOLCHAIN_FILE=build/conan_toolchain.cmake \\\n  -DCMAKE_BUILD_TYPE=Release \\\n  -DBUILD_TESTING=ON \\\n  -DBUILD_EXAMPLES=ON\n\n# Build\ncmake --build build -j$(nproc)\n\n# Run tests\ncd build \u0026\u0026 ctest --output-on-failure\n```\n\n## Platform Support\n\n| Platform | Status | Notes |\n|----------|--------|-------|\n| Linux (x64) | Tested | Ubuntu 20.04+, Debian 11+ |\n| Windows (x64) | Supported | Regularly validated in repository builds |\n| macOS (x64/ARM) | Unverified | No regular validation in this repository |\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n## License\n\nThis project is licensed under the MIT License - see [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Uses [TTMath](https://www.ttmath.org/) for INT128 support\n- Uses [CppDecimal](https://github.com/vpiotr/decimal_for_cpp) for IEEE 754-2008 decimal arithmetic\n- Inspired by modern C++ database libraries\n\n## Support\n\n- **Issues**: [GitHub Issues](https://github.com/sashok74/fbpp/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/sashok74/fbpp/discussions)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsashok74%2Ffbpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsashok74%2Ffbpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsashok74%2Ffbpp/lists"}