feat: Add support for ClickHouse, LibSQL, Turso, ScyllaDB, Cassandra, MSSQL & Azure SQL - #51
Merged
Merged
Conversation
- Add backend drivers & engine implementations for: - ClickHouse (HTTP JSON protocol) - LibSQL & Turso (local SQLite + remote /v2/pipeline HTTP protocol with Bearer auth) - Apache Cassandra & ScyllaDB (CQL driver via scylla::Session) - Microsoft SQL Server & Azure SQL (TDS driver via tiberius + tokio-rustls) - Update connection pool caching, health checks, schema/table introspection, and export - Add frontend forms, validation, and branded SVG icons for all 7 engines - Set connection string mode as default in ConnectionDialog with auto-detection badges - Compact engine selector cards and icons for cleaner dialog presentation - Migrate query editor from Monaco to CodeMirror with native SQL dialects (MSSQL, Cassandra, SQLite, StandardSQL, PostgreSQL, MySQL) and intelligent autocompletions - Add unit and integration tests across both Rust backend (148 tests) and frontend (85 tests)
… and updated architecture
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
This PR adds first-class support for 7 new database engines across VeloxDB (Rust backend + TypeScript/React frontend):
FORMAT JSON)/v2/pipelineHTTP protocol with Bearer token authentication)scylla::Session)tiberiusTDS driver +tokio-rustls)In addition:
MSSQL,Cassandra,SQLite,StandardSQL,PostgreSQL,MySQL) and schema-aware autocomplete.Verification
cargo test).pnpm test).pnpm build(tsc -b && vite build) built cleanly with zero errors.pnpm tauri dev.