Esc

SQLite

Overview

SQLite is a self-contained, serverless, zero-configuration relational database engine. It stores the entire database as a single file on disk, making it ideal for embedded applications, mobile apps, desktop tools, and local development. SQLite is the most widely deployed database engine in the world.

Driver

Connection fields

FieldDescription
FileAbsolute path to the .db or .sqlite database file.
OptionsAdditional connection parameters as key1=val1&key2=val2.

Schema browser

Once connected, Arris reads the sqlite_master table and organizes objects into groups.

The schema tree displays the following object types, grouped by category:

Double-click any table or view to open it in a new tab with browse mode.

Supported SQL commands

CommandNotes
SELECTQuery data with WHERE filters, JOINs, aggregates, and window functions.
INSERTInsert single or multiple rows.
UPDATEUpdate existing rows.
DELETEDelete rows.
CREATE / DROPCreate and drop tables, views, and other schema objects.