Skip to content

v0.12.0-beta

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 19 Sep 08:09
· 1907 commits to main since this release
3040c80

v0.12 Beta release

  • variables . SQLPage now support setting and reusing variables between statements. This allows you to write more complex SQL queries, and to reuse the result of a query in multiple places.
    -- Set a variable
    SET person = 'Alice';
    -- Use it in a query
    SELECT 'text' AS component, 'Hello ' || $person AS contents;