DRAFTThis page is not published. Only visible in development mode.

Scripting

ReifyDB's scripting language lets you define schemas, manipulate data, create views, procedures, tests, and more, all in a single coherent system.

Define Schema

$ Create a Table
$ ctrl+enter to run

Namespaces organize your tables. Every table lives inside a namespace.

Insert and Query

$ Insert and Query
$ ctrl+enter to run

Insert rows, then query them with FROM. Everything is transactional.

Built-in Testing

$ Testing
$ ctrl+enter to run

Write tests alongside your schema. Seed data with test procedures, assert results inline.

What's Covered