sqlx 0.1.1

🧰 The Rust SQL Toolkit.
Documentation
1
2
3
4
5
with accounts (id, name) as (
    VALUES (1, 'Herp Derpinson')
)
select * from accounts
where id = ?;