1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/databases/diesel
2023-01-02 20:33:43 +00:00
..
migrations/20170124012402_create_users restructure folders 2022-02-18 02:01:48 +00:00
src fix diesel test in CI (#592) 2022-12-12 02:41:22 +00:00
.gitignore restructure folders 2022-02-18 02:01:48 +00:00
Cargo.toml move a couple more things to workspace deps 2023-01-02 20:33:43 +00:00
README.md Update README.md (#579) 2022-11-04 22:11:36 +00:00

diesel

Basic integration of Diesel using SQLite for Actix Web.

Usage

Install SQLite

# on OpenSUSE
sudo zypper install sqlite3-devel libsqlite3-0 sqlite3

# on Ubuntu
sudo apt-get install libsqlite3-dev sqlite3

# on Fedora
sudo dnf install libsqlite3x-devel sqlite3x

# on macOS (using homebrew)
brew install sqlite3

Initialize SQLite Database

cd databases/diesel
cargo install diesel_cli --no-default-features --features sqlite

echo "DATABASE_URL=test.db" > .env
diesel setup
diesel migration run

There will now be a database file at ./test.db.

Running Server

cd databases/diesel
cargo run

# Started http server: 127.0.0.1:8080

Available Routes

POST /user

Inserts a new user into the SQLite DB.

Provide a JSON payload with a name. Eg:

{ "name": "bill" }

On success, a response like the following is returned:

{
  "id": "9e46baba-a001-4bb3-b4cf-4b3e5bab5e97",
  "name": "bill"
}
Client Examples

Using HTTPie:

http POST localhost:8080/user name=bill

Using cURL:

curl -S -X POST --header "Content-Type: application/json" --data '{"name":"bill"}' http://localhost:8080/user

GET /user/{user_uid}

Gets a user from the DB using its UID (returned from the insert request or taken from the DB directly). Returns a 404 when no user exists with that UID.

Client Examples

Using HTTPie:

http localhost:8080/user/9e46baba-a001-4bb3-b4cf-4b3e5bab5e97

Using cURL:

curl -S http://localhost:8080/user/9e46baba-a001-4bb3-b4cf-4b3e5bab5e97

Explore The SQLite DB

sqlite3 test.db
sqlite> .tables
sqlite> SELECT * FROM users;

Using Other Databases

You can find a complete example of Diesel + PostgreSQL at: https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix