vow-query
vow-query composes SQL fragments without an ORM — pair with vow-postgres or vow-mysql. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-queryvpm installQuick start
Section titled “Quick start”import vquery from vow_query
fn main(caps: Caps) -> int { let sql = vquery.limit(vquery.select("widgets", "id"), 5); print sql; return 0;}Run tests
Section titled “Run tests”cd vow-libs/vow-query && vow test tests/smoke.vow