Vorynza
ProductInfrastructurePricingRoadmapDocs
ProductInfrastructurePricingRoadmapDocs
Vorynza

Managed PostgreSQL databases. Provisioned instantly, billed simply, backed up automatically.

TwitterGitHubLinkedIn

Product

  • Postgres
  • Pricing
  • Roadmap
  • Status

Developers

  • Docs
  • API Reference
  • Postgres Guide
  • Support

Company

  • About
  • Blog
  • CareersHiring
  • Contact

Legal

  • Privacy
  • Terms
  • Security

© 2026 Vorynza. All rights reserved.

All systems operational
Docs/Postgres Guide
Postgres Guide

Connect your database

Use any standard Postgres client, ORM, or tool. Your Vorynza database works like any other PostgreSQL database.

01

Connection string format

Your Vorynza connection string uses the standard PostgreSQL URI format with SSL enforced.

bash
postgresql://<username>:<password>@<host>:5432/<database>?sslmode=require
02

Connect with Prisma

Add your connection string to your .env file, then configure your Prisma schema.

bash
# .env
DATABASE_URL="postgresql://vnz_xxxx_user:your-password@host:5432/vnz_xxxx_db?sslmode=require"

# prisma/schema.prisma
datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}

# Then run:
npx prisma generate
npx prisma db push
03

Connect with Drizzle

Install drizzle-orm and postgres, then create your client.

typescript
npm install drizzle-orm postgres

# db/index.ts
import { drizzle } from 'drizzle-orm/postgres-js'
import postgres from 'postgres'

const client = postgres(process.env.DATABASE_URL!)
export const db = drizzle(client)
04

Connect with psql

Copy your connection string from the Vorynza dashboard and connect directly.

bash
psql "postgresql://vnz_xxxx_user:your-password@host:5432/vnz_xxxx_db?sslmode=require"
05

Connect with node-postgres (pg)

Use the pg package directly for raw query access.

typescript
npm install pg @types/pg

import { Pool } from 'pg'

const pool = new Pool({
  connectionString: process.env.DATABASE_URL,
  ssl: { rejectUnauthorized: false }
})

const result = await pool.query('SELECT NOW()')
console.log(result.rows[0])

Need help connecting? Contact support