Back to topics

SQL tooling as UI: turning queries into usable interfaces with SQLYac and SQLPage

1 min read
235 words
Database Debates SQLYac SQLPage

SQL tooling is turning queries into usable interfaces, not just lines of code. SQLYac gives you executable SQL docs with variables, safety prompts, and per-query targeting, letting you run annotated queries from the terminal by piping to any SQL client. Meanwhile, SQLPage takes the same SQL brainpower and spills it into auto-generated web UIs for any DB. And for teams chasing repeatable evaluation of retrieval pipelines, the Local RAG Eval Harness keeps benchmarks local and reproducible. [1][2][3]

  • SQLYac - You write annotated queries in a single file with variables, and set up safety prompts so destructive actions prompt for confirmation. Queries can be targeted per block; you can run a file with 'sqlyac queries.sql QueryWithVariables | mysql -u user -p database' (or psql, sqlite3). [1]

  • SQLPage - SQLPage 0.38: transform SQL queries into web UIs for any DB. [2]

  • Local RAG Eval Harness - A small toolkit to run reproducible, local evaluations for retrieval-augmented generation (RAG). It ships with a CLI + notebooks, fixed seeds, and a baseline config so results are easy to compare across machines; metrics include Hit@K, MRR, Exact Match, grounded accuracy, latency, and token-cost; one-command local runs (Docker optional); minimal HTML report + CSV/Parquet exports. [3]

Roadmap items tease dataset adapter registry, built-in failure-mode explorer, and a tiny web UI. These tools together move SQL from code to interactive interfaces, backed by measurable benchmarks you can actually trust.

References

[1]
HackerNews

Show HN: SQLYac – Structured SQL files you can run from the terminal

Tool for executable, annotated SQL docs with variables and prompts, piping results to any SQL client, inspired by .http files.

View source
[2]
HackerNews

SQLPage 0.38: transform SQL queries into web UIs for any DB

Tool converts SQL queries into browser-based UIs for any database, enabling rapid UI generation from SQL.

View source
[3]
HackerNews

Show HN: Local RAG Eval Harness – reproducible benchmarksfor retrieval pipelines

Local reproducible RAG eval toolkit with metrics, seeds, and plug-ins for SQLite and Postgres; seeking feedback on metrics, chunking, rerankers.

View source

Want to track your own topics?

Create custom trackers and get AI-powered insights from social discussions

Get Started