Back to overview

Using the DB Admin Backend Interface

Developer Tutorials Published on 13.02.2026

Part 1: Feature Overview

Dashboard

The dashboard is your command center. It provides an immediate high-level overview of your database health and statistics.

Statistics

View total number of tables, total records across the database, and the physical size on disk.

Recent Tables

Quickly access the top 5 largest or most recently accessed tables without searching.

Quick Actions

One-click access to common tools like the SQL Console or Export wizard.

Table Management

The Tables view lists all tables in your database and allows you to manage them.

  • Sorting: Click column headers to sort tables by name, row count, size, engine, or collation.
  • Search: Use the search bar at the top to filter the table list by name instantly.
  • Actions:
    • Browse: Opens the data view to see records.
    • Structure: Opens the schema editor to modify columns and indices.
Data Browser

The core of DB Admin. View, filter, and manipulate your data with ease.

Advanced Filtering

Use the collapsible filter panel to search for specific records. You can combine multiple filters.

  • LIKE (Contains text)
  • = (Exact match)
  • >, < (Greater/Less than)
  • IS NULL / IS NOT NULL
Editing & Actions

Manage records directly from the list:

  • Edit: Click to modify a record.
  • Delete: Click to remove a single record.
  • Bulk Delete: Select multiple rows via checkboxes and use the "Delete Selected" button.
  • Add: Use the green "New Record" button to insert data.
Structure & Schema

Modify the design of your tables without writing complex SQL statements.

View all columns with their types (VARCHAR, INT, etc.), default values, and collations. You can Add new columns or Delete existing ones.

Manage performance and integrity. View Primary Keys, Unique Keys, and standard Indices. You can add new indices to speed up searches.

View and copy the raw CREATE TABLE statement. Useful for documentation, backups, or replicating the table structure on another server.
Import & Export
Import

Upload CSV files to populate tables. The intelligent wizard guides you through:

  1. Upload: Select file and set delimiter/charset.
  2. Mapping: Match CSV columns to database fields.
  3. Preview: Check data before importing.
Export

Download table data in various formats for backup or analysis:

CSV JSON XML SQL
Advanced Tools
SQL Console

Execute raw SQL queries directly against the database. Includes history and schema browser.

Procedures & Triggers

View definitions of Stored Procedures and Triggers to understand business logic.

Process Manager

View currently running queries. Kill processes that are stuck or slowing down the system.

Part 2: Common Admin Tasks

2

Adding a New Field

Scenario: You need to add a "phone_number" field to the customers table.

  1. Go to Tables and click the button next to customers.
  2. Click the green Add Field button at the top right.
  3. Fill out the modal form:
    • Name: phone_number
    • Type: VARCHAR
    • Length: 20
  4. Click Create. The column is added immediately to the database.
3

Importing Data from Excel

Scenario: You have a product list in Excel and want to import it into the database.

  1. Save your Excel file as CSV (Comma delimited) or CSV (UTF-8).
  2. In DB Admin, click Import in the sidebar.
  3. Select the target table (e.g., products) from the dropdown.
  4. Upload your CSV file. Adjust the Delimiter (usually ; for European Excel or , for US) if necessary.
  5. Click Analyze.
  6. Map the CSV columns to your database fields using the dropdowns. Select "Ignore" for columns you don't need.
  7. Click Execute Import.
4

Emergency: Stopping a Stuck Query

Scenario: The database is slow because of a heavy report running in the background.

  1. Navigate to Processes in the sidebar.
  2. Look for a process with a high Time value or a complex Info state.
  3. Click the red button next to that process.
  4. Confirm the action to terminate the query immediately.