dibs-sql 0.1.1

Typed SQL AST and renderer for dibs
Documentation
1
2
3
4
5
6
7
8
---
source: crates/dibs-sql/src/render/tests.rs
expression: result.sql
---
INSERT INTO "products" ("handle", "status", "created_at")
SELECT "handle", "status", NOW()
FROM UNNEST($1::text[], $2::text[]) AS "t"(handle, status)
RETURNING "id", "handle", "status"