Skiv
Browse documentation

Documentation

Database Viewer

Browse and query databases beside your code.

The database viewer connects to local and networked databases, lists their schemas, and renders query results in a fast, sortable grid.

Connecting

Add a connection from the database panel. Skiv supports SQLite, DuckDB, PostgreSQL, MySQL, MongoDB, and Redis.

Querying

sql
SELECT id, email, plan
FROM users
WHERE plan = 'pro'
ORDER BY created_at DESC;