mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-07 17:54:31 +00:00

* WIP preparing 0.7.0 release * fix: re-enable examples * fix doctests in `sqlx-core` * cherry-pick CHANGELOG entry for 0.6.3 * add actions workflow for examples * fix(cli): close connection after running migrations * fix examples * fix(sqlite): fix parsing of URLs via `Any` * fix(example): don't let Postgres `listen` example run forever * fix Postgres `transaction` example
JSON Example
Setup
-
Declare the database URL
export DATABASE_URL="postgres://postgres:password@localhost/json"
-
Create the database.
$ sqlx db create
-
Run sql migrations
$ sqlx migrate run
Usage
Add a person
echo '{ "name": "John Doe", "age": 30 }' | cargo run -- add
or with extra keys
echo '{ "name": "Jane Doe", "age": 25, "array": ["string", true, 0] }' | cargo run -- add
List all people
cargo run