Files
metabuilder/docs/dbal/cpp/README.md

48 lines
1.3 KiB
Markdown

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