Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable
Let me guess, AI bloatDisabled by default, opt-in yourself
Probably another ancient DB managerHuh, a DB manager that's actually aesthetic???
Probably slow ElectronWhat! roughly 10mb, <1s startup
Probably way overpricedFree for life, and self-hostable

Features

Drizzle runner in Dora

Stay in type-safe Drizzle when that is how you think, then inspect the SQL Dora will execute before it hits the database.

RunJSONAutocomplete active
1await db
2 .select({
3 name: customers.name,
4 revenue: sum(orders.total).as('revenue'),
5 })
6 .from(customers)
7 .innerJoin(orders, eq(orders.customerId, customers.id))
8 .where(eq(orders.status, 'paid'))
9 .groupBy(customers.name)
10 .orderBy(desc(sum(orders.total)))
11 .limit(5)
SQL preview
SELECT "customers"."name",
sum("orders"."total") AS "revenue"
FROM "customers"
INNER JOIN "orders"
ON "orders"."customer_id" = "customers"."id"
WHERE "orders"."status" = 'paid'
GROUP BY "customers"."name"
ORDER BY sum("orders"."total") DESC
LIMIT 5
Drizzle runner with schema-aware autocomplete and SQL preview

Dora includes a Drizzle-oriented runner for teams that model queries in TypeScript-first ORM syntax instead of raw SQL alone.

Autocomplete and SQL preview keep the workflow grounded in your live schema so generated statements stay reviewable.

What you get

  • Drizzle query authoring inside the workbench
  • Schema-aware autocomplete
  • SQL preview before execution
  • Pairs with raw SQL console workflows