Quick setup
Click Create Connection…, select SurrealDB, enter the host and port, pick the auth level that matches your user, and connect. The driver needs SurrealDB 2.0 or later and talks CBOR over the HTTP RPC endpoint, so record links, datetimes, durations, decimals, and UUIDs keep their types. The driver is not in the app. Picking in the Choose a Database sheet offers the download before the form opens, and opening a saved connection installs it without asking. Settings > Plugins > Browse > installs it up front. See Plugins.Connection settings
Connection URL
Authentication
Only a root user lists every namespace; other levels browse the scope the user is limited to.
Namespaces and databases
Namespaces sit at the top of the sidebar, databases inside them, tables inside a database. Neither switch reconnects. The namespace and database ride on each request, and a tab bound to a second database keeps the same connection. Right-click a namespace for Drop Namespace… (REMOVE NAMESPACE) or a database for Drop Database… (REMOVE DATABASE). Select several with Shift-click or Cmd-click and one confirmation covers all of them. See Work on Several Databases at Once.
Records in the grid

SurrealDB records in the data grid
UPDATE that sets only the fields you touched, leaving computed FUTURE fields and another writer’s changes alone. Values go out as typed parameters, so an int stays an int and a filter value is never parsed as SurrealQL.
idis the primary key and read-only. Leave it empty on a new row for a generated one, or typetable:idto choose it.- A record link shows as
table:id. Objects and arrays show as compact JSON and are edited as JSON. - On a
RELATIONtable,inandoutsit next toid. - A
SCHEMALESStable has no declared fields, so its columns come from the rows fetched: a field only some records carry still gets a column, and the rest show an empty cell.
SurrealQL
The editor runs whole SurrealQL scripts, with completions for the common statements:EXPLAIN and EXPLAIN FULL to show how it resolves, including whether an index is used.
SSL/TLS
Disabled is the default and connects over HTTP; every other mode connects over HTTPS. Preferred and Required (skip verify) accept any certificate, Verify CA and Verify Identity check it against the system trust store.Limitations
- The structure editor is read-only. Create and change fields and indexes with
DEFINE FIELDandDEFINE INDEXin the editor. - Editing
inorouton aRELATIONtable does nothing: those fields are dropped from the generatedUPDATE. Rewire a relation withRELATEor an explicitUPDATE. - Multi-request transactions are not available over HTTP. Send
BEGIN TRANSACTION; … COMMIT TRANSACTION;as one editor query instead. - Live queries (
LIVE SELECT) are not supported. Rerun the query to see new records. - A CA certificate file set in the SSL/TLS pane is ignored; verification goes through the system trust store, so install a private CA there.
- Import is not available. Export works, see Import and Export.
- Range values display but cannot be edited.
- The editor treats SurrealQL as plain text, with no syntax coloring.
- SurrealDB 1.x is not supported.
Troubleshooting
… is required for the selected authentication level
The level needs a scope the form has not been given. Namespace, Database, and Record Access all need Namespace; the last two also need Database; Record Access also needs Access Method.SurrealDB … is not supported. TablePro requires SurrealDB 2.0 or later.
The version comes from the server’s own/version reply. Upgrade the server, or point the connection at a 2.x or 3.x instance.


