docs: add unified_database_system integration layer guide#359
Merged
Conversation
Add comprehensive documentation for the unified database system covering architecture, configuration, adapters, protocol layer, and connection string builder. Update API_REFERENCE.md with cross-references to the new guide.
6 tasks
- Fix message_header: 20 bytes (not 12), add missing request_id field - Fix message_type enum: use actual names (DISCONNECT, BEGIN_TRANSACTION, PREPARE_STATEMENT, CLOSE_PREPARED, PING/PONG) and correct values - Fix unified_database_system API: show builder pattern (create_builder), correct Result<T> return types, fix all 3 affected examples
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
* docs: add unified_database_system integration layer guide (#355) Add comprehensive documentation for the unified database system covering architecture, configuration, adapters, protocol layer, and connection string builder. Update API_REFERENCE.md with cross-references to the new guide. * fix(docs): correct protocol header, message types, and API signatures - Fix message_header: 20 bytes (not 12), add missing request_id field - Fix message_type enum: use actual names (DISCONNECT, BEGIN_TRANSACTION, PREPARE_STATEMENT, CLOSE_PREPARED, PING/PONG) and correct values - Fix unified_database_system API: show builder pattern (create_builder), correct Result<T> return types, fix all 3 affected examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/guides/UNIFIED_SYSTEM.md(~1200 lines) covering the unified database system integration layerdocs/API_REFERENCE.mdwith Unified Database System section and cross-referencesWhat's Documented
Architecture
Configuration (configuration.h)
unified_db_configwith full builder API reference (14 builder methods)database_config,pool_config,db_logger_config,db_monitoring_config,db_thread_configbackend_type,db_log_level,thread_pool_typeConnection String Builder
Database Coordinator
Integration Adapters
Protocol Layer
Examples
Configuration Defaults Reference
Limitations
Test Plan
Closes #355