Ariel

1 program Added 2026-03-17T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Ariel DBMS, Ariel active database
Provenance: commit ad2862dee6 · authored 2026-03-17T05:44:14+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

IDL (0.20)Active Oberon (0.19)DATATRIEVE (0.15)dBase (0.15)DataWeave (0.13)

LLM-contributed programs

Active Database Rules

Provenance: commit ad2862dee6 · authored 2026-03-17T05:44:14+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.arl · added: 2026-03-17T12:00:00Z
/* Ariel active database rule definitions */

RULE SalaryAuditRule
    ON UPDATE(salary) IN Employee
    IF new.salary <> old.salary
    THEN
        INSERT INTO AuditLog(empno, old_salary, new_salary)
        VALUES (new.empno, old.salary, new.salary);

RULE BudgetCascadeRule
    ON INSERT INTO Employee
    THEN
        UPDATE Department
        SET total_salary = total_salary + new.salary
        WHERE deptno = new.deptno;

RULE MaxSalaryConstraintRule
    ON UPDATE(salary) IN Employee
    IF new.salary > 200000
    THEN
        INSERT INTO OverpaidWarning(empno, salary)
        VALUES (new.empno, new.salary);

Contribute — propose a file extension

Tell us where to find evidence about Ariel (mapped to pl/ariel). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Ariel/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ARIBAS ARITH-MATIC →