609 connection params - #685
Open
vlado-1 wants to merge 6 commits into
Open
Conversation
…opograte to providers which propogrates to query editor.
…oBro into 609-connection-params
vlado-1
marked this pull request as ready for review
July 10, 2026 09:25
Collaborator
|
@vlado-1 I will check this one and let you know when merged. |
darkeris345
self-requested a review
July 28, 2026 13:30
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.
Fix #609: Fetch Latest Database Configurations Dynamically in Query Editor
Used Google Gemini AI to write the below.
Problem
Previously, the Query Editor stored a cached database configuration available at the time of its creation and would not receive updates if a user subsequently modified connection parameters.
Attempting to resolve this via the sidebar views (TablesListProvider, CustomViewProvider, or FavoritesProvider) was insufficient because they also held stale, cached configurations that only refreshed upon manual database group re-selection.
Solution
Refactored configuration management to eliminate stale caching entirely. Instead of propagating snapshot-in-time config objects down to individual sidebar views, providers now query a single source of truth dynamically from the underlying extension state.
Codebase Changes Impact
src/treeview/
src/ and src/webview/
Test Coverage & Verification
Note: Verified functionality against mock data by monitoring DB Processor console messages to validate live configuration ingestion (no native OpenEdge environment required).