DBStudio

Table Explorer

Browse tables, edit rows, view indexes, and understand relationships.

The Table Explorer is the heart of DBStudio's user experience. It provides a spreadsheet-like interface for your database tables, supporting SQLite, PostgreSQL, and MySQL.

Core Features

Data Browsing

  • Infinite Scroll: Millions of rows feel responsive.
  • Table Views: show the tables in the database.
  • Editing: Edit rows in the table.
  • Search: Full-text search across visible columns.

Inline Editing

Double-click any cell to edit data directly. Changes are validated against column constraints before saving.

Editing respects foreign key constraints. DBStudio will show detailed error messages for constraint violations.

Schema Information

Column Details

View metadata for each column:

  • Type and length.
  • Nullability.
  • Default values.
  • Foreign key references.

Indexes

See all indexes on a table:

Index NameTypeColumns
pk_users_idPRIMARYid
idx_users_emailUNIQUEemail
idx_users_createdINDEXcreated_at

Relationships

Quickly see which tables reference this table (inbound) and which tables this table references (outbound).

Adding Tables

Create new tables directly from the Explorer:

  1. Right-click in the sidebar.
  2. Select New Table.
  3. Define columns and constraints.
  4. Click Create.

Usage

  1. Select a Connection in the sidebar.
  2. Tables are listed automatically.
  3. Click any table to open it in a tab.

On this page