Adding a Database Provider

August 4, 2026 · View on GitHub

How to add support for a new database to LibreDB Studio, and how to decide whether it needs a driver dependency at all. For the architecture this plugs into — the Strategy Pattern, the provider hierarchy, the shared interface and base classes — see DATABASE_PROVIDERS.md. For the per-provider reference index, see providers/README.md.

The Strategy Pattern keeps provider logic self-contained: no route, no shared component and no existing provider needs to know your engine exists. It does not remove the integration work. The union, the exhaustive UI maps, the factory, the connection-string parser, the query generators and the explain registry each carry one entry per provider, and Couchbase touched every one of them.


Prerequisites

Three decisions. The first is the consequential one, which is why it is first.

  1. Does it need a driver at all? Score the engine against the rubric below. A database with a first-class HTTP API can be supported with no dependency at all, and that is worth real effort to establish before you start. Four shipped providers need no driver: SQLite uses the built-in bun:sqlite/node:sqlite via sqlite-driver.ts, and three reach the engine over HTTP with nothing but fetch/node:https — Couchbase over the documented REST endpoints (couchbase.md), ClickHouse over its HTTP interface (clickhouse.md), and Apache Druid over POST /druid/v2/sql (druid.md). If it does need one, it will be something like pg, mysql2, mongodb, ioredis, oracledb or mssql.

  2. Which base class?

    • SQL databases → extend SQLBaseProvider. It is 153 lines of pure SQL text helpers keyed off this.type — identifier and string escaping, LIMIT clause building, placeholder style, read-only and DDL detection — plus a prepareQuery() that applies the shared query limiter. None of it touches a pool, a driver or a connection, so an HTTP transport is no reason to avoid it. A standard-SQL engine reached over HTTP, such as ClickHouse or Apache Druid, should extend it and get all of that for free. Druid is the clearest case of how little is left over: double-quoted identifiers and LIMIT n OFFSET m are both correct Druid SQL, so escapeIdentifier(), buildLimitClause() and getPlaceholder() are inherited unchanged and prepareQuery() is the only override — for a single dialect trap, not for the transport.
    • Non-SQL databases → extend BaseDatabaseProvider directly, like MongoDB and Redis.
    • The one reason a SQL-speaking provider extends BaseDatabaseProvider anyway is a dialect the shared helpers cannot express. Couchbase is that case: SQL++ quotes identifiers with doubled backticks, which escapeIdentifier() produces for no existing type, so it owns its quoting in keyspace.ts. The cost is that it re-implements prepareQuery() to get the limiter back (index.ts:336) — duplication worth avoiding if your dialect does fit.
  3. Query language?

    • 'sql' → Monaco editor uses SQL mode with autocomplete
    • 'json' → Monaco editor uses JSON mode with MQL-style autocomplete

Why a driver-free provider is worth the effort

Most databases speak a binary protocol over TCP, and for those the vendor's driver is not optional. PostgreSQL, MySQL, Oracle (TNS), SQL Server (TDS), MongoDB and Redis (RESP) are all in that category — a browser could not talk to any of them, and neither can fetch.

A minority expose a first-class HTTP API. For those the provider needs nothing but the runtime's own networking, and the saving is concrete rather than aesthetic:

  • No install step to fail. The Couchbase SDK runs a postinstall that downloads a prebuilt binary or compiles from source; in an air-gapped or egress-restricted network that breaks bun install.
  • No growth in any distribution channel. A native module lands in the Docker image, Snap, AppImage, Flatpak, deb/rpm, and in the @libredb/studio package that libredb-platform inherits. For reference, the Couchbase SDK is 64.6 MB unpacked across 3765 files.
  • No supply-chain surface added, and no N-API compatibility question for the Bun runtime.

The trade is real and worth stating plainly: you take on the code the driver would have owned. Connection pooling, topology discovery, failover and retry are yours to write or to go without. The Couchbase provider has no failover and no retry, which is acceptable for an editor and would not be for a high-throughput application.


Does it need a driver at all?

Score a candidate before writing code. Each criterion you fail becomes code you hand-write.

#QuestionWhy it matters
1Is HTTP a first-class interface? Do the vendor's own tools use it, or is it a bolt-on?A bolt-on API lags the real protocol and loses features
2Is the query language SQL-shaped?queryLanguage: "sql" gives Monaco highlighting, the sql tab type, NL2SQL and saved queries at no cost. The shared query limiter is separate — it comes from SQLBaseProvider.prepareQuery(), or you override prepareQuery() yourself; the base class default is a pass-through
3Is there catalog introspection over the same surface?Otherwise getSchema() has nothing to read
4Is there monitoring data over the same surface?Decides how much of the monitoring panel is real rather than honestly empty
5Is there an EXPLAIN?Decides supportsExplain and whether a strategy is needed
6How complex is auth?Basic auth is three lines. SigV4, OAuth2 refresh or Kerberos is a library — and that is usually where the no-dependency promise ends
7Does the data model flatten into TableSchema?The schema explorer renders a flat list, so a deeper hierarchy has to be flattened into the display name

A good sanity check for criterion 1: can a browser talk to it? Couchbase's own Web Console and the Capella UI are browser applications, so every service had to be reachable over HTTP for the vendor's own product to work at all. That is the strongest available evidence the API is first-class rather than an afterthought.


Driver-free providers: the transport seam

Provider logic must never call fetch directly. It goes through an interface with a single implementation, so that adopting a native driver later is an additive change rather than a rewrite. See couchbase/transport.ts:87:

interface XTransport {
  readonly kind: "http" | "native";   // widen as implementations appear

  query(stmt: string, o?: QueryOpts): Promise<XQueryResult>;
  manage<T>(path: string): Promise<T>;
  close(): Promise<void>;
}

Make the result type neutral, not the wire envelope. An interface shaped like the HTTP response ({ results, signature, status, metrics, errors }) would force any future driver adapter to fabricate fields that only the REST API produces naturally. Define the shape both sources could produce without inventing anything (transport.ts:45):

interface XQueryResult {
  rows: unknown[];               // a wire row is not always an object - see the traps below
  fieldNames: string[] | null;   // null when the source cannot describe the rows
  executionTimeMs: number;
  mutationCount: number;
  warnings: XWarning[];
}

rows is unknown[] because a wire row is genuinely not always an object: SELECT RAW and SELECT VALUE style projections return scalars, arrays or null. The provider narrows it to Record<string, unknown>[] when it builds its QueryResult. The Couchbase transport currently declares the narrower type and casts, which is unsound in exactly this way — the provider's normalizeRow() is what makes it safe in practice, and tightening the declaration is a known follow-up.

Errors follow the same rule: the transport throws one normalized error carrying a numeric code, so the provider switches on a code instead of sniffing message strings.

Guard the seam with a test. The boundary is only worth something if it holds. Assert that the wire-envelope identifiers appear in the transport file and nowhere else in the provider directory — see tests/unit/db/couchbase/seam-guard.test.ts. Without that, the envelope leaks one field at a time and the "one new file" estimate for a future adapter quietly stops being true.

Normalize at the provider boundary, not in the transport, when the raw payload has a second consumer. Couchbase's INFER returns its payload as rows[0] and introspection reads that array directly; reshaping rows inside the transport would have broken schema loading. The provider's toQueryResult() normalizes instead.


Step 1: Register the Database Type

1.1 — Add to DatabaseType union

File: src/lib/types.ts

// Before:
export type DatabaseType = 'postgres' | 'mysql' | 'sqlite' | 'mongodb' | 'redis' | 'oracle' | 'mssql' | 'libredb' | 'couchbase' | 'clickhouse' | 'druid';

// After (example: adding CockroachDB):
export type DatabaseType = 'postgres' | 'mysql' | 'sqlite' | 'mongodb' | 'redis' | 'oracle' | 'mssql' | 'libredb' | 'couchbase' | 'clickhouse' | 'druid' | 'cockroachdb';

1.2 — Add to QueryTab.type if needed

File: src/lib/types.ts

If your database uses a new editor mode (not 'sql' or 'mongodb'), add it:

export interface QueryTab {
  // ...
  type: 'sql' | 'mongodb' | 'redis' | 'libredb';  // Add your type here if needed
}

For most SQL databases, the existing 'sql' type is sufficient. You only need a new tab type if your database uses a fundamentally different query language.

Step 2: Create the Provider Class

Create the file under the right family folder, named by the canonical type-idsrc/lib/db/providers/sql/<type-id>.ts for SQL, src/lib/db/providers/<family>/<type-id>.ts (e.g. document/, keyvalue/) for non-SQL.

Start from the closest existing provider — it is the authoritative, code-verified template (and is kept in sync with its per-provider doc). Don't copy a skeleton from this guide; copy a real file:

Your database is…ExtendCopy as templateReference
Pooled SQL (wire-protocol DB)SQLBaseProviderpostgres.ts / mysql.tspostgres.md · mysql.md
Embedded / file SQLSQLBaseProvidersqlite.tssqlite.md
SQL database reached over HTTP (no driver)SQLBaseProvidersql/clickhouse/ or sql/druid/clickhouse.md · druid.md
Document storeBaseDatabaseProvidermongodb.tsmongodb.md
Document store reached over HTTP/REST (no driver)BaseDatabaseProviderdocument/couchbase/couchbase.md
Key-value storeBaseDatabaseProviderredis.tsredis.md
Embedded (in-process, no wire protocol)BaseDatabaseProviderembedded/libredb.tslibredb.md

Implement the abstract methods from the DatabaseProvider interface: connect, disconnect, query, getSchema, getHealth, runMaintenance, plus the monitoring set (getOverview, getPerformanceMetrics, getSlowQueries, getActiveSessions, getTableStats, getIndexStats, getStorageStats). None can be omitted, but a method whose data your engine does not expose returns a neutral value rather than throwing. Mind the return types: the list-valued ones (getSlowQueries, getActiveSessions, getTableStats, getIndexStats, getStorageStats) return [], while getOverview() and getPerformanceMetrics() return DTOs and need a zeroed object. libredb.ts is the reference for doing this honestly.

Override the metadata hooks so the shared UI renders correctly:

  • getCapabilities() — query language (sql | json), defaultPort, supported maintenanceOperations, the supportsExplain/supportsConnectionString/supportsCreateTable flags, and schemaRefreshPattern.
  • getLabels() — only if the generic SQL wording ("Table" / "row" / "Select Top 50" / …) doesn't fit. Non-relational providers relabel it (Redis → "Key Pattern"/"key", MongoDB → "Collection"/"document").
  • prepareQuery() — only if your dialect needs non-standard pagination. SQL LIMIT injection is inherited from SQLBaseProvider; Oracle/SQL Server override it for FETCH FIRST / TOP; the non-SQL providers make it a metadata-only pass-through.

Wrap native driver errors with mapDatabaseError(err, '<type-id>', query) — the 3rd argument is the raw query string (SQL or JSON, per src/lib/db/errors.ts) — so they normalise onto the shared error classes. For the exact DTO shapes see Reference: Interface Contracts; for worked, code-verified examples see each provider's Design decisions section in docs/providers/.

What the base class gives you for free

MethodWhat it does
isConnected()Returns this.state.connected
getTables()Calls getSchema() and extracts table names
getMonitoringData()Orchestrates getOverview, getPerformanceMetrics, etc.
validate()Checks that config.type and config.id exist
ensureConnected()Throws if not connected
trackQuery()Increments/decrements active query counter
measureExecution()Wraps a function and returns { result, executionTime }
mapError()Converts unknown errors to typed DatabaseError
setConnected()Updates connection state

What SQLBaseProvider adds (SQL databases only)

MethodWhat it does
escapeIdentifier()"table_name" (PostgreSQL/SQLite) or `table_name` (MySQL)
buildLimitClause()LIMIT 50 OFFSET 10
getPlaceholder()$1 (PostgreSQL) or ? (MySQL/SQLite)
shouldEnableSSL()Auto-detects cloud providers
prepareQuery()Automatically injects LIMIT into SELECT queries

Step 3: Register in the Factory

File: src/lib/db/factory.ts

Add a case to the switch statement:

export async function createDatabaseProvider(
  connection: DatabaseConnection,
  options: ProviderOptions = {}
): Promise<DatabaseProvider> {
  switch (connection.type) {
    // ... existing cases ...

    case 'cockroachdb': {
      const { CockroachDBProvider } = await import('./providers/sql/cockroachdb');
      return new CockroachDBProvider(connection, options);
    }

    // ...
  }
}

Important: Use dynamic import() to keep the initial bundle small.

Step 4: Add UI Configuration

File: src/lib/db-ui-config.ts

Add an entry to DB_UI_CONFIG:

import { /* existing imports */, Hexagon } from 'lucide-react';

const DB_UI_CONFIG: Record<DatabaseType, DatabaseUIConfig> = {
  // ... existing entries ...

  cockroachdb: {
    icon: Hexagon,                          // Pick a Lucide icon
    color: 'text-indigo-400',               // Tailwind color class
    label: 'CockroachDB',                   // Display name in ConnectionModal
    defaultPort: '26257',                   // Default port for host/port form
    showConnectionStringToggle: true,        // Show "Connection String" tab in modal
    connectionFields: ['host', 'port', 'user', 'password', 'database', 'connectionString'],
  },
};

Then add the type to the selectable list that drives the ConnectionModal picker:

File: src/hooks/use-connection-form.ts

// Append to the existing list - do not retype it, or you will drop a provider from the picker.
const selectableTypes: DatabaseType[] = [
  'postgres', 'mysql', 'sqlite', 'oracle', 'mssql', 'mongodb', 'couchbase', 'redis', 'libredb',
  'clickhouse', 'druid',
  'cockroachdb',
];

That's it. The ConnectionModal reads getDBConfig(type) for everything else — port, form fields, connection string toggle — automatically.

Step 5: Install the Driver

bun add <driver-package>

# Examples:
# bun add pg                  (PostgreSQL, CockroachDB)
# bun add mysql2              (MySQL)
# bun add mongodb             (MongoDB)
# bun add ioredis             (Redis)
# SQLite needs no driver — bun:sqlite / node:sqlite are runtime built-ins (see sqlite-driver.ts)
# Couchbase needs no driver — it speaks the Query and management REST APIs over fetch/node:https
# ClickHouse needs no driver — plain SQL over its HTTP interface (port 8123)
# Apache Druid needs no driver — plain SQL over POST /druid/v2/sql (Router 8888 or Broker 8082)

If your engine exposes a documented HTTP API, weigh it against the native driver before adding a dependency: a native module lands in the Docker image, every native distribution channel, and the @libredb/studio package that libredb-platform consumes.

Traps specific to HTTP databases

Each of these silently produces wrong output, and each was found by testing against a real server rather than a mock.

HTTP 200 does not mean success. Couchbase returns syntax and semantic errors inside a 200 response with status: "errors", and Trino does the same with a QueryError field. Check the payload before the HTTP status, or a failed statement reads as "0 rows". This is not universal — Apache Druid does use real 400 / 500 / 504 codes — so establish which behaviour applies before writing the error path.

Real status codes still misclassify. Druid answers SELECT 1/0 with HTTP 500, persona: "ADMIN" and category: "UNCATEGORIZED", message "/ by zero" — an ordinary user mistake reported as an admin-facing server failure, so reading 5xx as "the cluster is broken" would tell the user something false. ClickHouse has the same hazard: a denied grant is a 500 rather than a 403, and its message says "Not enough privileges" while containing neither "access denied" nor "permission denied". Classify on the engine's own error category or code, never on the status and never by sniffing message text. Druid's category is present in both of the envelopes it uses (the structured druidException and the legacy wrapper) and is a closed enum; ClickHouse's numeric exception code is in its plain-text error body. Each provider branches on that one field and on nothing else.

64-bit integers can arrive as unquoted JSON numbers, and JSON.parse rounds them silently. ClickHouse turns 18446744073709551615 into ...552000; Druid turns 9007199254740993 into 9007199254740992. No error is raised in either case, so the wrong number reaches the grid looking exactly like the right one. Ask the server to quote them if it can — ClickHouse takes output_format_json_quote_64bit_integers=1 — and if it cannot, own the fix: Druid has no such setting, so its transport runs a string-aware pass over the raw body before parsing and quotes every integer literal outside Number.MIN_SAFE_INTEGER … Number.MAX_SAFE_INTEGER. String-aware is the load-bearing part; a naive digit-run rewrite corrupts "id: 9007199254740993" inside a value. Either way the number reaches the UI as an exact string, which is what the pg driver already does for int8. The generalisable lesson: check the widest integer type your engine supports against Number.MAX_SAFE_INTEGER before trusting JSON.parse, and expect to write the fix yourself when the server offers no switch.

The response envelope does not always describe the rows. Couchbase's signature is "*" for SELECT *, and { id, "*" } for a wildcard mixed with named projections. Taking those keys verbatim names a literal * column and hides every field the wildcard expanded to. Derive the field list from the rows whenever the envelope cannot describe them.

Rows are not always objects. SELECT RAW / SELECT VALUE style projections return scalars, arrays or null. Object.keys(null) throws, and Object.keys("text") returns character indices. Wrap anything that is not a plain object in a single named column.

Name resolution can be implicit. Couchbase reads a bare two-part name as bucket.collection, so the explorer's scope.collection display name resolved to a non-existent bucket until the transport pinned a query context to the connection's bucket. Check how the engine resolves an unqualified name before generating one.

Consistency defaults may not be read-your-writes. Couchbase's query service defaults to not_bounded: immediately after an INSERT, a SELECT returned zero rows. For an interactive editor that is unacceptable, so the transport sends request_plus and accepts the latency.

Pagination models differ. Couchbase returns everything in one response; Trino makes the client poll a nextUri until it is absent; Elasticsearch uses search_after. The query() contract assumes one shot, so a polling protocol needs a bounded loop inside the transport.

Statelessness has a hard edge. With one HTTP request per statement there is no session, so transactions, temp tables, SET and prepared statements all need explicit threading — a transaction id carried on each request, or a session parameter. This is the real boundary of the pattern: right for an editor, wrong for session-heavy workloads.


Capability honesty

getCapabilities() drives what the UI offers, and a flag that is true but cannot work produces a control that only emits invalid input. That is the defect class #194 and #201 were about. Two traps already hit:

  • supportsCreateTable must be false for schemaless engines. CreateTableModal builds CREATE TABLE from a column list, which a schemaless collection cannot consume.
  • If supportsExplain is true, buildSql() must not return null for the analyze mode. The direct Explain action always builds with analyze (use-query-execution.ts:165) and refuses the run when the strategy declines, so the button is dead while only the background pre-warm works. When the engine has no analyze equivalent, return the estimate for both modes — sqlite-queryplan.ts and couchbase-json.ts both do exactly that.
  • Decide what is explainable with classifySelectPrefix() (explain/select-prefix.ts), never with a fresh regex. It accepts a leading CTE and leading SQL comments as well as a bare SELECT, which every dialect here was live-verified to explain, and it returns "select" or "with" so a strategy can treat the two differently. Each of the six strategies used to carry its own /^\s*SELECT\b/i, and every one of them refused a CTE — while the shared analyzeQuery already classified WITH … SELECT as a SELECT and injected a LIMIT into one.
  • Ask whether your engine's EXPLAIN executes what it explains before widening anything. This is the one place the six strategies genuinely differ. PostgreSQL's emits EXPLAIN (ANALYZE, …), which runs the statement — so a data-modifying CTE is a write wearing a WITH, and explaining one performs it (verified: the row really landed). postgres-json.ts therefore pairs the shared classification with hasDataModifyingStatement(), and it applies that screen only to the "with" case, because a statement leading with SELECT cannot carry such a CTE and screening it too would strip the button off anything that merely mentions insert. The other five engines describe without running and need no screen.
  • A capability can be absent because the grammar lacks it rather than because nobody implemented it, and the flag reads the same either way — so check, and then say so. Druid answers CREATE TABLE t (id BIGINT) with a syntax error, because CREATE is not one of its statements at all (a datasource comes into existence by being ingested into), so supportsCreateTable is false. Nothing in MaintenanceType has a SQL-reachable Druid analogue either — compaction and retention are Coordinator and task concerns, and kill has nowhere to get a query id from because Druid publishes no catalog of running queries — so supportsMaintenance is false with an empty operation list, rather than true with nothing behind it.

The same honesty rule governs monitoring: a source the connected user cannot read returns empty, it never throws. Monitoring catalogs are frequently permission-gated, so a denial is the normal case for a restricted user and must not break an otherwise working connection.


Verify against a real server

Mock-based tests are the repo standard and they are not sufficient on their own. On the Couchbase provider a live pass against a real cluster disproved a design decision — un-indexed collections turned out to be queryable on Server 7.6+ through a sequential scan — and found three defects the mocks had accepted without complaint. On Druid it overturned a verdict recorded in this guide (see Driver-free candidates): the EXPLAIN output was predicted not to fit the tree render model, and the real plan turned out to be a genuine nested tree.

Before opening the PR, drive the provider through the running application against a real server:

  • full INSERT / UPDATE / SELECT / DELETE, including a SELECT immediately after a write, to catch read-your-writes problems — or establish that the engine has no write statement to test. Druid SQL has neither UPDATE nor DELETE in its grammar and rejects INSERT/REPLACE on the native engine, and each of those is a claim only an actual attempt can settle
  • both error paths — a syntax error and a missing object — confirming each surfaces as an error rather than as zero rows
  • schema introspection, checking column types and the object-naming rule
  • the Explain button on a statement that has never been run, so a background pre-warm cannot mask a broken direct action
  • every monitoring panel, and each maintenance operation

Add a service to database-compose.yml so the next person can repeat this — or a profile-gated set of them, which is what a distributed engine needs. Druid has no single-container mode, so its seven services all carry profiles: ["druid"]: a default docker compose up -d must not double for everyone who is not working on Druid, and docker compose --profile druid down is then needed to remove them again.


Step 6: Verify

Local gates

All six are mandatory before a commit, and they match CI:

bun run format     # Biome, lineWidth 120
bun run lint       # oxlint, then ESLint - 0 errors
bun run typecheck  # tsc --noEmit
bun run knip       # fails on unused files, exports and dependencies
bun run test       # every layer
bun run build      # production build

If your change adds executable lines, the coverage gate applies too — it is a required CI check and it demands 100%:

bun run test:coverage && bun run coverage:check

Work test-first. Retrofitting tests afterwards is how coverage-gate fights start.

Grep Check

Ensure you didn't introduce hardcoded type checks outside your provider:

# Should only appear in YOUR provider file and db-ui-config.ts:
grep -r "=== 'cockroachdb'" src/

If it appears in routes, components, or utilities — you're doing it wrong. Use capabilities/labels instead.

Functional Checklist

FeatureHow to test
ConnectionCreate connection in ConnectionModal, verify it connects
SchemaSidebar shows tables/collections with columns and indexes
Query executionWrite a query, press Ctrl+Enter, verify results
EXPLAINIf supportsExplain: true, verify EXPLAIN button works
Create TableIf supportsCreateTable: true, verify the + button appears
MaintenanceOpen Database Maintenance, verify correct operations show
AI AssistantOpen AI in QueryEditor, ask a question, verify correct syntax
LabelsCheck all UI text uses your labels (entity names, actions, etc.)
Schema refreshRun a write query, verify schema reloads if it matches schemaRefreshPattern

Reference: Interface Contracts

ProviderCapabilities

Every field and what it controls:

FieldTypeControls
queryLanguage'sql' | 'json'Monaco editor language mode, AI prompt style, query template format
queryDialect'libredb' | undefinedOptional. Opts a provider's tables into a custom client-side query generator (see query-generators.ts); left undefined by SQL/Mongo/Redis
supportsExplainbooleanEXPLAIN button visibility in QueryEditor toolbar
explainFormatExplainFormat | undefinedRequired whenever supportsExplain is true. Selects the strategy in src/lib/explain/index.ts. Setting the flag without the format leaves the control visible and dead — the UI resets out of explain mode when metadata lacks it
supportsExternalQueryLimitingbooleanWhether route applies LIMIT to queries (SQL) or provider handles it (MongoDB)
supportsCreateTableboolean"Create Table" button in SchemaExplorer
supportsMaintenancebooleanWhether maintenance API accepts requests for this provider
maintenanceOperationsMaintenanceType[]Which operation cards show in MaintenanceModal (vacuum, analyze, reindex, etc.)
supportsConnectionStringbooleanUsed for future connection validation logic
defaultPortnumber | nullInformational; actual UI port comes from db-ui-config.ts
schemaRefreshPatternstringRegex to detect write/DDL queries that should trigger schema reload

ProviderLabels

Every field and where it appears:

FieldWhere it appears
entityName"Create {Table}" button title, "{Table} name copied", "{Table} Optimizer"
entityNamePlural"{Tables} found" count in MaintenanceModal
rowName / rowNamePlural"{rows}" count in MaintenanceModal table list
selectActionSchemaExplorer dropdown: "Select Top 100" / "Find Documents"
generateActionSchemaExplorer dropdown: "Generate Query" / "Generate Find"
analyzeActionSchemaExplorer dropdown + MaintenanceModal button title
vacuumActionSchemaExplorer dropdown + MaintenanceModal button title
searchPlaceholderSchemaExplorer search input placeholder text
analyzeGlobalLabelMaintenanceModal "Run Analyze" button text
analyzeGlobalTitleMaintenanceModal card title ("Update Statistics")
analyzeGlobalDescMaintenanceModal card description paragraph
vacuumGlobalLabelMaintenanceModal "Run Vacuum" button text
vacuumGlobalTitleMaintenanceModal card title ("Reclaim Space")
vacuumGlobalDescMaintenanceModal card description paragraph

PreparedQuery

Returned by prepareQuery(). The query route uses it directly:

// In /api/db/query/route.ts — no type checks needed:
const provider = await getOrCreateProvider(connection);
const prepared = provider.prepareQuery(sql, { limit, offset, unlimited });
const result = await provider.query(prepared.query);
FieldPurpose
queryThe (possibly modified) query string to execute
wasLimitedWhether a LIMIT was injected (shown as warning badge in UI)
limitThe effective row limit
offsetThe effective offset

Reference: Existing Providers

For the authoritative, code-verified reference for each shipped provider (extends-which-base, driver, pooling, capabilities, labels, prepareQuery behaviour, and limitations), see the prime docs — they are the single source of truth and are kept in sync with the code:

docs/providers/ → postgres · mysql · oracle · mssql · sqlite · redis · mongodb · couchbase · clickhouse · druid · libredb

When implementing a new provider, the closest existing analogue is the best template: a pooled SQL provider (postgres/mysql), an embedded SQL provider (sqlite), a non-SQL provider (mongodb/redis), or a driverless provider reached over HTTP (clickhouse or druid for SQL, couchbase for a document store).

Driver-free candidates

Assessed against the rubric in Prerequisites. Anything not listed almost certainly needs a driver.

Shipped since this list was written: Couchbase (#263), ClickHouse (#264) and Apache Druid (#265).

Druid is worth a paragraph, because it corrected this table's own verdict. The entry that stood here rated it strong but predicted that EXPLAIN PLAN FOR "returns a native-query translation rather than an operator tree, so it does not fit the existing tree render model". The live plan disproved that: query.dataSource recurses — join carries left and right, query carries one child, union carries a list — so the native query is a nested tree, and it renders as { kind: "tree" } with nothing forced. What keeps that honest is the omission: Druid's planner emits no cost and no row estimate, so no node carries metrics, and node labels name Druid's own query types (groupBy, scan, timeseries, topN) rather than borrowing a relational-plan vocabulary. The lesson for the next candidate is to read the engine's real EXPLAIN output before predicting the render model from its documentation. See druid.md.

CandidateVerdict
Trino / StarburstHighest strategic value — one provider fronts S3, Iceberg, Delta and Hive. Unscheduled on purpose: a catalog is another system, so what a connection pins is a product question. Also a nextUri polling protocol and a fragmented auth matrix
OpenSearch / ElasticsearchHTTP is the only protocol. Needs a dialect decision first: the SQL endpoint is a subset, the native DSL is JSON. OpenSearch is Apache 2.0 and the cleaner primary target
Snowflake / BigQuery / Databricks SQLREST SQL APIs exist and the data model fits; auth is the wall (key-pair JWT, service-account signing, OAuth) and that is where the no-dependency promise ends
CouchDB, ArangoDB, SurrealDB, Qdrant, WeaviateAll HTTP, all non-SQL or only partially SQL. Feasible, but each needs its own query grammar the way MongoDB and LibreDB do

Contributions are welcome for any of these. Open an issue with the rubric score first, so the design decisions are settled before code exists — that is what let the Couchbase, ClickHouse and Druid providers each land as a single reviewable PR.


Quick Reference Checklist

The integration points, all of which need an entry. This is the list the Strategy Pattern does not spare you — provider logic stays self-contained, registration does not:

Always:

  • src/lib/types.ts — add to the DatabaseType union
  • src/lib/db/providers/<family>/<type-id>.ts (or a directory) — new: the provider class
  • src/lib/db/factory.ts — add a case with a dynamic import
  • src/lib/db-ui-config.ts — icon, colour, label, default port, connection fields
  • src/hooks/use-connection-form.tsappend to selectableTypes (do not retype the array)
  • src/components/icons/db-icons.tsx — the engine's mark (strokeWidth={1.5}, no HTML size attrs)
  • src/lib/seed/types.ts — the seed-config type enum, or seeded connections fail validation
  • package.json — the driver, if it needs one. A driver-free provider leaves it untouched, and three shipped ones do: couchbase, clickhouse and druid each add nothing here
  • database-compose.yml — a service, so the next person can repeat the live pass. A distributed engine contributes a profiles: [...] set instead, as Druid's seven services do, so the default stack does not grow for everyone

Conditionally, and each one is easy to miss because the code still compiles without it:

  • src/lib/db/types.ts — add to the ExplainFormat union whenever supportsExplain is true. The Record<ExplainFormat, …> registry is exhaustive, so this and the next item must land together or neither compiles
  • src/lib/explain/index.ts — register the strategy
  • src/lib/connection-string-parser.ts — the scheme(s), if supportsConnectionString
  • src/lib/query-generators.ts — only if the dialect needs its own branch; the default is PostgreSQL-shaped, so check before assuming it fits

And the tests for every exhaustive map, which are the real checklist — several are exhaustive by construction (Record<DatabaseType, …> in db-ui-config, PICKER_COVERAGE in the connection-form test), so the compiler and those tests refuse to pass until each is updated: tests/unit/db/factory.test.ts, tests/unit/lib/db-ui-config.test.ts, tests/unit/lib/db-icons.test.tsx, tests/unit/lib/connection-string-parser.test.ts, tests/unit/lib/query-generators.test.ts, tests/unit/seed/types.test.ts, tests/hooks/use-connection-form.test.ts.

git grep -l <the-previous-provider-type-id> -- src/ tests/ is the authoritative checklist. This list is maintained by hand and has been wrong before: it long claimed "no other files should need changes", while Couchbase (#263) and ClickHouse (#264) each touched 27 files under src/ and tests/, and Druid (#265) roughly two dozen of its own. Trust the grep over this list.

What the Strategy Pattern does spare you is provider logic: no route, no shared component and no existing provider needs to know your engine exists. If you find yourself adding a === '<type-id>' check in a route, a component or a utility, that is the abstraction being bypassed — express it as a capability or a label instead. Registration is the part it does not spare you, and the grep above is how you find all of it.