RDML

1 program Added 2026-03-05T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Remote Data Manipulation Language, ACMS RDML
Provenance: commit 0ef18884a8 · authored 2026-03-05T00:11:28+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/rdml
LLM (this repo) · 1Pldb

Related languages

KQML (0.31)BALM (0.31)Rell (0.27)CDDL (0.25)RDQL (0.25)

LLM-contributed programs

Employee Task and Procedure Definition

Provenance: commit 0ef18884a8 · authored 2026-03-05T00:11:28+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.rdml · added: 2026-03-05T10:00:00Z
! RDML example: Employee form definition and data retrieval
! ACMS (Application Control and Management System) application
! Remote Data Manipulation Language for OpenVMS

DEFINE TASK GET_EMPLOYEE_TASK;
    DEFINE STEP GET_EMP_STEP;
        SEND REQUEST TO SERVER EMPLOYEE_SERVER;
        REQUEST MESSAGE IS EMP_REQUEST_MSG;
        RESPONSE MESSAGE IS EMP_RESPONSE_MSG;
    END STEP GET_EMP_STEP;
END TASK GET_EMPLOYEE_TASK;

DEFINE PROCEDURE DISPLAY_EMPLOYEE;
    EMP_ID     : INTEGER;
    EMP_NAME   : CHARACTER(30);
    EMP_DEPT   : CHARACTER(10);
    EMP_SALARY : REAL;
BEGIN
    CALL GET_EMPLOYEE_TASK
        USING EMP_ID
        GIVING EMP_NAME, EMP_DEPT, EMP_SALARY;

    DISPLAY 'Employee: ', EMP_NAME;
    DISPLAY 'Department: ', EMP_DEPT;
    DISPLAY 'Salary: ', EMP_SALARY;
END PROCEDURE DISPLAY_EMPLOYEE;

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about RDML (mapped to pl/rdml). 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/RDML/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← RDFS rdoc →