Docs Index
oracle connector.md

Proof Card: Oracle Connector

Status: beta Last verified: 2026-07-07 · git sha af5796ad

Claim

OracleConnector is a real client for Oracle ORDS (Oracle REST Data Services) at /ords/{schema}/ endpoints. The IConnector interface is fully satisfied with Basic-auth and API-key authentication paths, and CRUD against ORDS REST resources is wired. Status is intentionally beta — not production — because API depth is currently limited to basic CRUD (list/search/create/read/update/delete); webhook setup, transaction batching, and richer ORDS feature coverage (procedure invocation via /ords/{schema}/{module}/{procedure}) are not yet implemented.

Source

Tests

Live vs Fixture

Known Gaps

Verification (60-second AI-reviewer recipe)

npm test -- tests/unit/__tests__/OracleConnector.test.ts
grep -n "/ords/\|isDemoMode\|enableDemoMode" src/connectors/OracleConnector.ts | head -10

The grep proves the ORDS path prefix is real (multiple sites), and shows the demo-mode branch is gated explicitly — which is the structural reason this card carries Status: beta rather than Status: production.