Database Support
PostgreSQL
PostgreSQL support in data-peek
PostgreSQL
data-peek is optimized for PostgreSQL with full feature support.
Supported Versions
- PostgreSQL 12+
- Compatible with cloud providers: Supabase, Neon, Railway, AWS RDS, etc.
Connection
postgresql://[user]:[password]@[host]:[port]/[database]?sslmode=[mode]SSL Modes
| Mode | Description |
|---|---|
disable | No SSL |
require | SSL required, no verification |
verify-ca | Verify server certificate |
verify-full | Verify certificate and hostname |
Supported Data Types
Numeric
smallint,integer,bigintserial,bigserial,smallserialnumeric(p,s),decimal(p,s)real,double precisionmoney
Character
char(n),varchar(n),textbytea
Date/Time
timestamp,timestamptzdate,time,timetzinterval
Boolean & UUID
booleanuuid
JSON
json,jsonb
Arrays
- All types support array notation (e.g.,
integer[],text[])
Network
cidr,inet,macaddr
Geometric
point,line,box,path,polygon,circle
Range Types
int4range,int8range,numrangetsrange,tstzrange,daterange
PostgreSQL-Specific Features
EXPLAIN ANALYZE
Full support for query plan visualization with actual execution statistics.
Sequences
View and use sequences for auto-increment columns.
Custom Types
Full support for:
- Enums (with value dropdowns in editor)
- Composite types
- Domains
Table Designer
All PostgreSQL features in table designer:
- All index methods (btree, hash, gist, gin, spgist, brin)
- Partial indexes
- Covering indexes (INCLUDE)
- Check constraints
- Exclusion constraints
- Inheritance
- Partitioning
Functions
Use PostgreSQL functions in queries:
now(),current_timestampgen_random_uuid()array_agg(),json_agg()- All standard functions