Unified Database Platform for Postgres, MySQL, MariaDB, MSSQL & Oracle

Built-in validation, schema & role management, ZQL query language, REST API with docs, and drivers for Python & Node.js.

Add, update, or remove any database node from the dashboard without code changes.

import {ZTeraDBConnect, ZTeraDBQuery} from 'zteradb';

const ZTERADB_CONFIG = {
	...
}

const c = ZTeraDBConnect(ZTERADB_CONFIG, "db1.zteradb.com", 7777);

const result = await c.query(ZTeraDBQuery("user").select().filter(
	{active=true}
));