mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
# DBAL C++ Implementation
|
|
|
|
## Overview
|
|
Native C++ implementation of the DBAL system for high-performance database access.
|
|
|
|
## Location
|
|
[/dbal/cpp/](/dbal/cpp/)
|
|
|
|
## Key Components
|
|
|
|
### Source Code
|
|
- **Path**: [/dbal/cpp/src/](/dbal/cpp/src/)
|
|
- **Purpose**: C++ source implementation
|
|
- **Includes**: Core classes, algorithms, and business logic
|
|
|
|
### Headers
|
|
- **Path**: [/dbal/cpp/include/](/dbal/cpp/include/)
|
|
- **Purpose**: C++ header files and public API definitions
|
|
|
|
### Tests
|
|
- **Path**: [/dbal/cpp/tests/](/dbal/cpp/tests/)
|
|
- **Purpose**: Unit and integration tests for C++ code
|
|
|
|
## Build System
|
|
- CMake configuration: [/dbal/cpp/CMakeLists.txt](/dbal/cpp/CMakeLists.txt)
|
|
- Conan dependencies: [/dbal/cpp/conanfile.txt](/dbal/cpp/conanfile.txt)
|
|
|
|
## Documentation
|
|
- [README](/dbal/cpp/README.md)
|
|
- [Linting Guide](/dbal/cpp/README.Linting.md)
|
|
- [Docker Setup](/dbal/cpp/README.Docker.md)
|
|
- [Security Testing](/dbal/cpp/SECURITY_TESTING.md)
|
|
- [CVE Analysis](/dbal/cpp/CVE_ANALYSIS.md)
|
|
|
|
## Building
|
|
|
|
```bash
|
|
cd dbal/cpp
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
```
|
|
|
|
## Related Documentation
|
|
- [DBAL Architecture](/docs/dbal)
|
|
- [Database Layer](/docs/database)
|